mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 06:02:57 +03:00
28 lines
751 B
JavaScript
28 lines
751 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|spec).[jt]s'],
|
|
testRunner: 'jest-circus/runner',
|
|
testTimeout: 10000,
|
|
globalSetup: './jest/setup.js',
|
|
globalTeardown: './jest/teardown.js',
|
|
transform: {
|
|
'^.+\\.ts$': ['babel-jest', {
|
|
presets: [
|
|
['@babel/preset-env', {
|
|
targets: {
|
|
node: 'current'
|
|
}
|
|
}],
|
|
['@babel/preset-typescript']
|
|
],
|
|
}],
|
|
},
|
|
reporters: [
|
|
'default',
|
|
'./jest/reporter'
|
|
]
|
|
});
|