theatre/jest.compat-tests.config.js

29 lines
783 B
JavaScript
Raw Normal View History

/** @type {import('jest').Config} */
module.exports = {
2023-07-30 15:41:09 +02:00
testMatch: [
'<rootDir>/compat-tests/fixtures/*/*.compat-test.ts',
'<rootDir>/compat-tests/*.compat-test.ts',
],
moduleNameMapper: {},
// setupFiles: ['./theatre/shared/src/setupTestEnv.ts'],
automock: false,
// transform: {
// '^.+\\.tsx?$': [
// 'esbuild-jest',
// {
// sourcemap: true,
// },
// ],
// '^.+\\.js$': [
// 'esbuild-jest',
// {
// sourcemap: true,
// },
// ],
// },
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
2023-07-30 15:41:09 +02:00
// these tests take a long time to run, because each of them either runs a full build of a package,
// or tests the build on a browser using playwright
testTimeout: 1000 * 60 * 2,
}