Class_generator/tests/package.json
StillHammer cb614a439d Add comprehensive test suite with unit tests and integration tests
- Complete test infrastructure with runners, helpers, and fixtures
- Unit tests for core modules: EnvConfig, ContentScanner, GameLoader
- Integration tests for proxy, content loading, and navigation
- Edge case tests covering data corruption, network failures, security
- Stress tests with 100+ concurrent requests and performance monitoring
- Test fixtures with malicious content samples and edge case data
- Comprehensive README with usage instructions and troubleshooting

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-16 11:37:08 +08:00

16 lines
624 B
JSON

{
"name": "class-generator-tests",
"version": "1.0.0",
"description": "Tests unitaires et d'intégration pour Class Generator",
"scripts": {
"test": "node --test tests/unit/*.test.js tests/integration/*.test.js",
"test:unit": "node --test tests/unit/*.test.js",
"test:integration": "node --test tests/integration/*.test.js",
"test:watch": "node --test --watch tests/unit/*.test.js tests/integration/*.test.js",
"test:coverage": "node --test --experimental-test-coverage tests/unit/*.test.js tests/integration/*.test.js"
},
"devDependencies": {
"jsdom": "^22.1.0"
},
"type": "module"
}