nocobase/jest.config.js

25 lines
533 B
JavaScript
Raw Normal View History

2020-10-24 07:34:43 +00:00
const path = require('path');
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
2021-05-23 00:38:08 +00:00
setupFilesAfterEnv: [
path.resolve(__dirname, 'dotenv.js'),
],
2020-10-24 07:34:43 +00:00
testMatch: [
// '**/__tests__/**/*.[jt]s?(x)',
'**/?(*.)+(spec|test).[jt]s?(x)'
],
2020-12-02 05:23:09 +00:00
modulePathIgnorePatterns: [
"<rootDir>/.dumi/",
2021-05-23 00:38:08 +00:00
"<rootDir>/packages/father-build/",
"<rootDir>/packages/client/lib/"
2020-12-02 05:23:09 +00:00
],
2021-05-23 00:38:08 +00:00
globals: {
'ts-jest': {
babelConfig: true,
tsconfig: 'tsconfig.jest.json',
diagnostics: false,
},
},
2020-10-24 07:34:43 +00:00
};