mirror of
https://github.com/fluencelabs/marine.git
synced 2025-03-15 22:10:49 +00:00
10 lines
249 B
JavaScript
10 lines
249 B
JavaScript
module.exports = {
|
|
preset: 'jest-puppeteer',
|
|
testMatch: ['**/?(*.)+(spec|test).[t]s'],
|
|
testPathIgnorePatterns: ['/node_modules/', 'dist'],
|
|
testMatch: ['**/test/*.spec.ts'],
|
|
transform: {
|
|
'^.+\\.ts?$': 'ts-jest',
|
|
},
|
|
};
|