Files
examples/quickstart/3-browser-to-service/jest.config.js
2022-02-16 01:37:43 +03:00

9 lines
211 B
JavaScript

module.exports = {
preset: 'jest-puppeteer',
testMatch: ['**/?(*.)+(spec|test).[t]s'],
testPathIgnorePatterns: ['/node_modules/', 'dist'],
transform: {
'^.+\\.ts?$': 'ts-jest',
},
};