Files
pulse/testing-tools/package.json
T
Pulse Monitor 9566dd0cb8 Improve mobile responsiveness and fix email notifications
- Fix Gmail email configuration (field mapping between frontend/backend)
- Implement proper AES-256-GCM encryption for sensitive config files
- Add responsive column hiding for Storage tab on mobile devices
- Fix email configuration persistence and auto-populate recipients
- Add comprehensive testing tools for UI and API validation
- Fix alert acknowledge/clear functionality returning 404 errors
- Improve mobile UX: Storage shows only essential columns on small screens
- Revert dashboard to consistent table view (removed card layout experiment)
- Fix various UI issues: threshold detection, email template spacing
- Update notification system to use actual node data in test emails
2025-08-02 16:02:13 +00:00

17 lines
524 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:all": "npm run test:api && npm run test:comprehensive",
"status": "node check-status.js"
},
"dependencies": {
"axios": "^1.6.0",
"playwright": "^1.40.0"
}
}