9 lines
242 B
Plaintext
9 lines
242 B
Plaintext
|
const path = require( 'path' );
|
||
|
const { useE2EJestConfig, getAppRoot } = require( '@woocommerce/e2e-environment' );
|
||
|
|
||
|
const jestConfig = useE2EJestConfig( {
|
||
|
roots: [ path.resolve( __dirname, '../specs' ) ],
|
||
|
} );
|
||
|
|
||
|
module.exports = jestConfig;
|