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