mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 11:26:55 +00:00
d5d0e1036b
* docs: add docs * ignore dumi theme test * fix: error TS2717: Subsequent property declarations must have the same type. * update docs * deploy gh-pages * plugins docs * hash & cname * exportStatic * ssr * vercel * vercel * fix: deploy vercel * Delete vercel.json * docs * fix APP_DIST * on master branch
15 lines
355 B
JavaScript
15 lines
355 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
setupFilesAfterEnv: [path.resolve(__dirname, 'dotenv.js')],
|
|
testMatch: [
|
|
// '**/__tests__/**/*.[jt]s?(x)',
|
|
'**/?(*.)+(spec|test).[jt]s?(x)'
|
|
],
|
|
modulePathIgnorePatterns: [
|
|
"<rootDir>/.dumi/",
|
|
"<rootDir>/packages/father-build/"
|
|
],
|
|
}; |