- Deleted the DebrosFramework integration test file to streamline the test suite. - Updated blog API server to import reflect-metadata for decorator support. - Changed Docker Compose command for blog integration tests to run real tests. - Modified TypeScript configuration for Docker to target ES2022 and enable synthetic default imports. - Removed obsolete Jest configuration and setup files for blog scenario tests. - Cleaned up global test setup by removing console mocks and custom matchers.
11 lines
186 B
TypeScript
11 lines
186 B
TypeScript
// Test setup file
|
|
import 'reflect-metadata';
|
|
|
|
// Global test configuration
|
|
jest.setTimeout(30000);
|
|
|
|
// Setup global test utilities
|
|
global.beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
});
|