mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 08:36:44 +00:00
11 lines
249 B
JavaScript
11 lines
249 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)'
|
||
|
],
|
||
|
};
|