Pulse/testing-tools/package.json
Pulse Monitor 740ec400a6 Fix alert acknowledgement and clean up codebase
- Fix alert acknowledgement API calls to use correct URL format
- Remove all TypeScript 'any' types - notifications.ts now properly typed
- Add comprehensive alert and threshold testing scripts
- Add final system verification test
- Clean up test artifacts and screenshots
- Update testing tools documentation in package.json and CLAUDE.md
- Verify all systems operational with 100% test pass rate
2025-08-02 16:32:59 +00:00

21 lines
No EOL
742 B
JSON

{
"name": "pulse-testing-tools",
"version": "1.0.0",
"description": "Testing tools for Pulse monitoring system",
"scripts": {
"test:email": "node test-email-config.js",
"test:api": "node test-api-endpoints.js",
"test:buttons": "node test-button-functionality.js",
"test:comprehensive": "node test-comprehensive.js",
"test:alerts": "node test-alerts-api.js",
"test:thresholds": "node test-thresholds-alerts.js",
"test:mobile-dash": "node test-mobile-dashboard.js",
"test:mobile-storage": "node test-mobile-storage.js",
"test:all": "npm run test:api && npm run test:comprehensive",
"status": "node check-status.js"
},
"dependencies": {
"axios": "^1.6.0",
"playwright": "^1.40.0"
}
}