theatre/jest.compat-tests.config.js

24 lines
574 B
JavaScript
Raw Normal View History

/** @type {import('jest').Config} */
module.exports = {
testMatch: ['<rootDir>/compatibility-tests/fixtures/*/*.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'],
testTimeout: 1000 * 60,
}