module.exports = { projects: [ { displayName: 'unit', preset: 'ts-jest', testEnvironment: 'node', rootDir: '.', testMatch: ['/src/**/*.spec.ts', '/test/unit/**/*.spec.ts'], moduleFileExtensions: ['js', 'json', 'ts'], }, { displayName: 'integration', preset: 'ts-jest', testEnvironment: 'node', rootDir: '.', testMatch: ['/test/integration/**/*.e2e-spec.ts'], moduleFileExtensions: ['js', 'json', 'ts'], }, { displayName: 'admin', preset: 'ts-jest', testEnvironment: 'node', rootDir: '.', testMatch: ['/test/admin/**/*.e2e-spec.ts'], moduleFileExtensions: ['js', 'json', 'ts'], }, { displayName: 'smoke', preset: 'ts-jest', testEnvironment: 'node', rootDir: '.', testMatch: ['/test/smoke/**/*.smoke-spec.ts'], moduleFileExtensions: ['js', 'json', 'ts'], }, ], };