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