fix: clean up tsconfig.json and remove Playwright references

- Remove @playwright/test from types array since Playwright was removed
- Update test documentation to use Jest-based tools instead
- Verify TypeScript compilation still works correctly
- Maintains working Jest types for existing tests
This commit is contained in:
William Valentin
2025-09-08 22:31:18 -07:00
parent da21692785
commit c4152c9061
2 changed files with 3 additions and 3 deletions

View File

@@ -244,8 +244,8 @@ test('medication card handles user interactions', () => {
1. **Visual Regression Testing** 1. **Visual Regression Testing**
```bash ```bash
npm install --save-dev @playwright/test npm install --save-dev jest-image-snapshot
# Add screenshot comparison tests # Add screenshot comparison tests with Jest
``` ```
2. **Performance Testing** 2. **Performance Testing**

View File

@@ -8,7 +8,7 @@
"skipLibCheck": true, "skipLibCheck": true,
"esModuleInterop": true, "esModuleInterop": true,
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"types": ["node", "jest", "@playwright/test"], "types": ["node", "jest"],
"moduleResolution": "bundler", "moduleResolution": "bundler",
"isolatedModules": true, "isolatedModules": true,
"moduleDetection": "force", "moduleDetection": "force",