mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 06:02:57 +03:00
16 lines
514 B
JavaScript
16 lines
514 B
JavaScript
module.exports = /** @type {import('@jest/types').Config.InitialOptions} */ ({
|
|
// all of our tests have a browser and a node process, so the default max workers is too many.
|
|
maxWorkers: Math.ceil(require('os').cpus().length / 2),
|
|
rootDir: './test',
|
|
testEnvironment: './jest',
|
|
testMatch: ['**/?(*.)jest.[jt]s'],
|
|
testRunner: 'jest-circus/runner',
|
|
testTimeout: 10000,
|
|
globalSetup: './jest/setup.js',
|
|
globalTeardown: './jest/teardown.js',
|
|
reporters: [
|
|
'default',
|
|
'./jest/reporter'
|
|
]
|
|
});
|