Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/jest.config.js
1447 views
1
/** @type {import('ts-jest').JestConfigWithTsJest} */
2
module.exports = {
3
moduleDirectories: ["dist", "node_modules"],
4
preset: 'ts-jest',
5
testEnvironment: 'node',
6
testMatch: ['**/?(*.)+(spec|test).ts?(x)'],
7
globals: {
8
'ts-jest': {
9
tsconfig: 'tsconfig-dist.json'
10
}
11
}
12
};
13
14