/** @type {import('jest').Config} */ module.exports = { ...require('../../jest.config'), testEnvironmentOptions: { url: 'http://localhost/', }, globalSetup: '/test/setup.ts', globalTeardown: '/test/teardown.ts', setupFilesAfterEnv: [ '/test/setup-test-folder.ts', '/test/setup-mocks.ts', '/test/extend-expect.ts', ], coveragePathIgnorePatterns: ['/src/databases/migrations/'], testTimeout: 10_000, };