mirror of
https://github.com/HSLdevcom/digitransit-ui
synced 2025-07-06 09:30:37 +02:00
15 lines
513 B
JavaScript
15 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'],
|
|
};
|