snort/packages/system/jest.config.js

10 lines
253 B
JavaScript
Raw Normal View History

2023-06-08 10:45:23 +00:00
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
bail: true,
preset: "ts-jest",
testEnvironment: "jsdom",
2023-06-12 13:15:45 +00:00
roots: ["src", "tests"],
moduleDirectories: ["src", "node_modules"],
2023-06-08 10:45:23 +00:00
setupFiles: ["./tests/setupTests.ts"],
};