woocommerce/packages/js/e2e-environment/index.js

22 lines
493 B
JavaScript
Raw Normal View History

2020-09-15 17:08:19 +00:00
/**
* Internal dependencies
*/
const babelConfig = require( './babel.config' );
const esLintConfig = require( './.eslintrc.js' );
2020-10-21 19:17:10 +00:00
const allE2EConfig = require( './config' );
const allE2EUtils = require( './utils' );
2022-02-04 18:48:56 +00:00
const slackUtils = require( './build/slack' );
2020-10-21 19:17:10 +00:00
/**
* External dependencies
*/
const allPuppeteerUtils = require( '@automattic/puppeteer-utils' );
module.exports = {
2020-07-29 18:13:22 +00:00
babelConfig,
esLintConfig,
2020-10-21 19:17:10 +00:00
...allE2EConfig,
...allE2EUtils,
...allPuppeteerUtils,
...slackUtils,
};