AppFlowy/frontend/appflowy_tauri/jest.config.cjs

21 lines
718 B
JavaScript
Raw Normal View History

const { compilerOptions } = require('./tsconfig.json');
const { pathsToModuleNameMapper } = require("ts-jest");
const esModules = ["lodash-es", "nanoid"].join("|");
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>'],
modulePaths: [compilerOptions.baseUrl],
moduleNameMapper: {
...pathsToModuleNameMapper(compilerOptions.paths),
"^lodash-es(/(.*)|$)": "lodash$1",
"^nanoid(/(.*)|$)": "nanoid$1",
},
"transform": {
"(.*)/node_modules/nanoid/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [`/node_modules/(?!${esModules})`],
"testRegex": "(/__tests__/.*\.(test|spec))\\.(jsx?|tsx?)$",
};