mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-05 13:39:24 +08:00
11 lines
249 B
JavaScript
Executable File
11 lines
249 B
JavaScript
Executable File
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)'
|
|
],
|
|
}; |