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

9 lines
261 B
JavaScript
Raw Normal View History

2020-04-07 08:43:11 +00:00
const path = require( 'path' );
const { jestConfig: baseE2Econfig } = require( '@woocommerce/e2e-environment' );
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' ) ],
};