mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 10:50:37 -06:00
15 lines
494 B
JavaScript
15 lines
494 B
JavaScript
require('module-alias/register');
|
|
|
|
module.exports = {
|
|
verbose: false,
|
|
transform: {
|
|
'^.+\\.(ts|tsx)$': 'ts-jest',
|
|
},
|
|
moduleDirectories: ['node_modules', 'public'],
|
|
roots: ['<rootDir>/public/e2e-test'],
|
|
testRegex: '(\\.|/)(test)\\.(jsx?|tsx?)$',
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
|
|
setupFiles: [],
|
|
globals: { 'ts-jest': { isolatedModules: true } },
|
|
setupFilesAfterEnv: ['expect-puppeteer', '<rootDir>/packages/grafana-toolkit/src/e2e/install.ts'],
|
|
}; |