1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-24 07:06:26 +09:00
cherrypick/packages/backend/jest.config.e2e.cjs
2024-08-28 16:07:38 +09:00

16 lines
372 B
JavaScript

/*
* For a detailed explanation regarding each configuration property and type check, visit:
* https://jestjs.io/docs/en/configuration.html
*/
const base = require('./jest.config.cjs');
module.exports = {
...base,
globalSetup: '<rootDir>/built-test/entry.js',
setupFilesAfterEnv: ['<rootDir>/test/jest.setup.ts'],
testMatch: [
'<rootDir>/test/e2e/**/*.ts',
],
};