10 lines
282 B
JavaScript
10 lines
282 B
JavaScript
|
const path = require( 'path' );
|
||
|
const { jestConfig: baseE2Econfig } = require( '@woocommerce/e2e-environment' );
|
||
|
|
||
|
module.exports = {
|
||
|
...baseE2Econfig,
|
||
|
// Specify the path of your project's E2E tests here.
|
||
|
roots: [ path.resolve( __dirname, '../specs' ) ],
|
||
|
testTimeout: 30000,
|
||
|
};
|