mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 05:46:00 +00:00
14 lines
323 B
JavaScript
14 lines
323 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
setupFiles: [path.resolve(__dirname, 'dotenv.js')],
|
|
testMatch: [
|
|
// '**/__tests__/**/*.[jt]s?(x)',
|
|
'**/?(*.)+(spec|test).[jt]s?(x)'
|
|
],
|
|
modulePathIgnorePatterns: [
|
|
"<rootDir>/packages/father-build/"
|
|
],
|
|
}; |