2020-04-07 08:43:11 +00:00
|
|
|
const path = require( 'path' );
|
2020-04-30 17:01:42 +00:00
|
|
|
const { jestConfig: baseE2Econfig } = require( '@woocommerce/e2e-environment' );
|
2019-07-23 13:08:36 +00:00
|
|
|
|
2020-04-07 08:43:11 +00:00
|
|
|
module.exports = {
|
|
|
|
...baseE2Econfig,
|
|
|
|
// Specify the path of your project's E2E tests here.
|
|
|
|
roots: [ path.resolve( __dirname, '../specs' ) ],
|
|
|
|
};
|