@@ -33,7 +33,6 @@ The project features complete implementations of both libraries, a functional ma
3333- HTML5, CSS3, JavaScript (vanilla)
3434- Python 3.7+
3535- Pollinations.AI API
36- - Playwright for testing
3736- GitHub Actions for CI/CD
3837
3938---
@@ -96,10 +95,6 @@ sitetest0/
9695│ ├── test_safety_and_reasoning.py # Safety/reasoning tests
9796│ └── __init__.py # Package initialization
9897│
99- ├── tests/ # Active Playwright tests
100- │ ├── navigation.spec.js # Navigation tests (10 tests)
101- │ └── browser-compatibility.spec.js # Browser compatibility tests
102- │
10398├── ai/ # AI Chat Section
10499│ ├── index.html # AI landing page
105100│ └── demo/ # Interactive demo (~90% complete, ~8,000 lines)
@@ -321,42 +316,6 @@ git commit -m "Docs: Update TODO list
321316
322317## Testing Guidelines
323318
324- ### Playwright Tests
325-
326- Located in ` tests/ ` directory.
327-
328- ** Running Tests:**
329-
330- ``` bash
331- # Install dependencies
332- npm install
333-
334- # Run all tests
335- npx playwright test
336-
337- # Run specific test
338- npx playwright test tests/navigation.spec.js
339-
340- # Run with UI
341- npx playwright test --ui
342-
343- # Debug mode
344- npx playwright test --debug
345- ```
346-
347- ### Test Organization
348-
349- - ** navigation.spec.js** - Navigation and page loading tests (10 tests)
350- - ** browser-compatibility.spec.js** - Browser compatibility & element loading tests across Chromium, Firefox, and WebKit
351- - ** README.md** - Test documentation and guidelines
352-
353- ### After Testing
354-
355- 1 . Review test output
356- 2 . Update ` Docs/TEST_RESULTS.md ` with findings
357- 3 . Fix any failing tests before committing
358- 4 . Document known issues or flaky tests
359-
360319### Library Testing
361320
362321** JavaScript:**
@@ -395,7 +354,6 @@ Both PolliLibJS and PolliLibPy follow the same modular structure:
395354### Configuration Files
396355
397356- ** package.json** - NPM configuration
398- - ** playwright.config.js** - Playwright test configuration
399357- ** .github/workflows/** - CI/CD configuration
400358
401359---
@@ -465,28 +423,25 @@ Both PolliLibJS and PolliLibPy follow the same modular structure:
4654235 . Commit changes in logical groups
4664246 . Update this CLAUDE.md if structure changes significantly
467425
468- ### Running a Full Test Suite
426+ ### Running Library Tests
469427
470428``` bash
471- # 1. Test website functionality
472- npx playwright test
473-
474- # 2. Test JavaScript library
429+ # 1. Test JavaScript library
475430cd PolliLibJS
476431node test-utils-demo.js
477432cd ..
478433
479- # 3 . Test Python library
434+ # 2 . Test Python library
480435cd PolliLibPy
481436python test_utils_demo.py
482437cd ..
483438
484- # 4 . Update test results
439+ # 3 . Update test results (if applicable)
485440# Edit Docs/TEST_RESULTS.md with findings
486441
487- # 5 . Commit test results
442+ # 4 . Commit test results
488443git add Docs/TEST_RESULTS.md
489- git commit -m " Test: Update test results after full suite run "
444+ git commit -m " Test: Update test results after library tests "
490445```
491446
492447---
@@ -501,7 +456,6 @@ git commit -m "Test: Update test results after full suite run"
501456- SEO - Comprehensive implementation
502457- Documentation - Well-documented
503458- CSS/JS Minification - Automated deployment
504- - Cross-browser testing - Firefox & WebKit 100% passing
505459
506460### 🟢 Mostly Complete / Polishing
507461
@@ -516,7 +470,6 @@ git commit -m "Test: Update test results after full suite run"
516470- Apps Gallery - In development (~ 70%)
517471 - ✅ Mini applications and utilities
518472 - ✅ Recent improvements (slideshow, navigation fixes)
519- - Playwright tests - Working navigation and browser compatibility tests
520473- Performance - Optimizations applied, ongoing improvements
521474
522475### ❌ Not Started / External
@@ -552,7 +505,6 @@ git commit -m "Test: Update test results after full suite run"
552505### External Resources
553506
554507- [ Pollinations.AI Documentation] ( https://github.com/pollinations/pollinations )
555- - [ Playwright Documentation] ( https://playwright.dev/ )
556508- [ GitHub Actions Documentation] ( https://docs.github.com/en/actions )
557509
558510---
@@ -572,9 +524,15 @@ This CLAUDE.md file should be updated when:
572524---
573525
574526** Last Updated:** 2025-11-22
575- ** Version:** 1.3 .0
527+ ** Version:** 1.4 .0
576528** Maintained by:** Unity AI Lab Team
577529
530+ ** Change Log (v1.4.0):**
531+ - Removed all Playwright test references and documentation
532+ - Removed tests/ directory section from repository structure
533+ - Updated Testing Guidelines to focus on library testing only
534+ - Removed Playwright from Key Technologies and External Resources
535+
578536** Change Log (v1.3.0):**
579537- Removed references to non-existent ` archived-tests/ ` directory
580538- Added ` /apps ` gallery documentation (~ 70% complete)
0 commit comments