woocommerce/tests/e2e/config/jest.config.js

9 lines
230 B
JavaScript
Raw Normal View History

2020-04-07 08:43:11 +00:00
const path = require( 'path' );
2020-07-29 18:13:22 +00:00
const { useE2EJestConfig } = require( '@woocommerce/e2e-environment' );
2020-07-29 18:13:22 +00:00
const jestConfig = useE2EJestConfig( {
2020-04-07 08:43:11 +00:00
roots: [ path.resolve( __dirname, '../specs' ) ],
2020-07-29 18:13:22 +00:00
} );
module.exports = jestConfig;