2020-10-20 10:41:47 -05:00
|
|
|
// We set this specifically for 2 reasons.
|
|
|
|
// 1. It makes sense for both CI tests and local tests to behave the same so issues are found earlier
|
|
|
|
// 2. Any wrong timezone handling could be hidden if we use UTC/GMT local time (which would happen in CI).
|
|
|
|
process.env.TZ = 'Pacific/Easter';
|
2020-09-17 01:59:20 -05:00
|
|
|
|
2017-10-22 00:03:26 -05:00
|
|
|
module.exports = {
|
2017-11-17 09:18:30 -06:00
|
|
|
verbose: false,
|
2021-12-03 11:09:25 -06:00
|
|
|
testEnvironment: 'jsdom',
|
2020-02-13 14:37:24 -06:00
|
|
|
transform: {
|
2022-11-24 08:00:41 -06:00
|
|
|
'^.+\\.(ts|tsx|js|jsx)$': [require.resolve('ts-jest'), { isolatedModules: true }],
|
2017-10-22 00:03:26 -05:00
|
|
|
},
|
2021-07-15 14:00:19 -05:00
|
|
|
transformIgnorePatterns: [
|
|
|
|
'node_modules/(?!(ol)/)', // <- exclude the open layers library
|
|
|
|
],
|
2022-05-30 08:14:34 -05:00
|
|
|
moduleDirectories: ['public'],
|
2022-02-16 07:15:31 -06:00
|
|
|
roots: ['<rootDir>/public/app', '<rootDir>/public/test', '<rootDir>/packages'],
|
2020-02-13 14:37:24 -06:00
|
|
|
testRegex: '(\\.|/)(test)\\.(jsx?|tsx?)$',
|
|
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
|
|
|
|
setupFiles: ['jest-canvas-mock', './public/test/jest-shim.ts', './public/test/jest-setup.ts'],
|
2021-05-19 05:40:10 -05:00
|
|
|
testTimeout: 30000,
|
2022-05-30 08:14:34 -05:00
|
|
|
resolver: `<rootDir>/public/test/jest-resolver.js`,
|
2020-08-20 08:21:42 -05:00
|
|
|
setupFilesAfterEnv: ['./public/test/setupTests.ts'],
|
2021-04-23 02:06:19 -05:00
|
|
|
globals: {
|
|
|
|
__webpack_public_path__: '', // empty string
|
|
|
|
},
|
2020-05-04 08:05:31 -05:00
|
|
|
moduleNameMapper: {
|
|
|
|
'\\.svg': '<rootDir>/public/test/mocks/svg.ts',
|
2020-06-29 12:58:47 -05:00
|
|
|
'\\.css': '<rootDir>/public/test/mocks/style.ts',
|
2020-09-03 01:54:46 -05:00
|
|
|
'monaco-editor/esm/vs/editor/editor.api': '<rootDir>/public/test/mocks/monaco.ts',
|
2020-05-04 08:05:31 -05:00
|
|
|
},
|
2022-12-27 05:06:06 -06:00
|
|
|
// Log the test results with dynamic Loki tags. Drone CI only
|
|
|
|
reporters: ['default', ['<rootDir>/public/test/log-reporter.js', { enable: process.env.DRONE === 'true' }]],
|
2017-10-22 00:03:26 -05:00
|
|
|
};
|