squiggle/packages/squiggle-lang/jest.config.js

14 lines
307 B
JavaScript
Raw Normal View History

2022-02-18 02:16:31 +00:00
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
2022-04-08 13:32:48 +00:00
preset: "ts-jest",
testEnvironment: "node",
2022-04-07 22:38:49 +00:00
testPathIgnorePatterns: [
2022-04-08 13:32:48 +00:00
".*Fixtures.bs.js",
"/node_modules/",
".*Helpers.bs.js",
2022-04-20 03:42:24 +00:00
".*Helpers.ts",
".*Reducer_Type.*",
".*_type_test.bs.js",
2022-04-08 13:32:48 +00:00
],
2022-02-18 02:16:31 +00:00
};