2022-02-18 02:16:31 +00:00
|
|
|
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
|
|
|
module.exports = {
|
|
|
|
preset: 'ts-jest',
|
|
|
|
testEnvironment: 'node',
|
2022-04-08 06:51:38 +00:00
|
|
|
testPathIgnorePatterns: [".*Fixtures.bs.js", "/node_modules/", ".*Helpers.bs.js"],
|
2022-04-06 19:19:27 +00:00
|
|
|
setupFilesAfterEnv: [
|
|
|
|
"<rootdir>/../../node_modules/bisect_ppx/src/runtime/js/jest.bs.js"
|
|
|
|
],
|
2022-02-18 02:16:31 +00:00
|
|
|
};
|