mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-24 07:06:26 +09:00
16 lines
372 B
JavaScript
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',
|
|
],
|
|
};
|