You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
334 B
11 lines
334 B
5 years ago
|
const baseConfig = require('./jest.src.config');
|
||
|
module.exports = {
|
||
|
...baseConfig,
|
||
|
moduleNameMapper: {
|
||
|
'^@harmony-js/(.*)$': '<rootDir>/packages/harmony-$1/src/index.ts',
|
||
|
},
|
||
|
setupTestFrameworkScriptFile:
|
||
|
'<rootDir>/scripts/jest/jest.framework-setup.js',
|
||
|
testMatch: ['<rootDir>/e2e/src/?(*.)+(spec|test|e2e).ts'],
|
||
|
};
|