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