You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
digitransit-ui/test/e2e/jest.config.js

16 lines
513 B
JavaScript

process.env.JEST_PLAYWRIGHT_CONFIG = `./test/e2e/jest-playwright-${
(process.env.MOBILE === 'true' && 'mobile') || 'desktop'
}.config.js`;
module.exports = {
verbose: true,
rootDir: '../..',
roots: ['./test/e2e'],
testMatch: ['**/?(*.)+(test).js'],
testPathIgnorePatterns: ['/node_modules/', 'app', 'build', '_static'],
testTimeout: 200000,
preset: 'jest-playwright-preset',
setupFilesAfterEnv: ['./test/e2e/jest.image.js'],
reporters: ['default', './test/e2e/helpers/image-reporter.js'],
};