restore ability to run individual tests
This commit is contained in:
parent
72219b2323
commit
be15429c30
|
@ -0,0 +1,6 @@
|
|||
/*
|
||||
* Internal dependencies
|
||||
*/
|
||||
const { runActivationTest } = require( '@woocommerce/e2e-core-tests' );
|
||||
|
||||
runActivationTest();
|
|
@ -0,0 +1,6 @@
|
|||
/*
|
||||
* Internal dependencies
|
||||
*/
|
||||
const { runInitialStoreSettingsTest } = require( '@woocommerce/e2e-core-tests' );
|
||||
|
||||
runInitialStoreSettingsTest();
|
|
@ -0,0 +1,6 @@
|
|||
/*
|
||||
* Internal dependencies
|
||||
*/
|
||||
const { runOnboardingFlowTest } = require( '@woocommerce/e2e-core-tests' );
|
||||
|
||||
runOnboardingFlowTest();
|
|
@ -0,0 +1,6 @@
|
|||
/*
|
||||
* Internal dependencies
|
||||
*/
|
||||
const { runMerchantTests } = require( '@woocommerce/e2e-core-tests' );
|
||||
|
||||
runMerchantTests();
|
|
@ -0,0 +1,6 @@
|
|||
/*
|
||||
* Internal dependencies
|
||||
*/
|
||||
const { runAddSimpleProductTest } = require( '@woocommerce/e2e-core-tests' );
|
||||
|
||||
runAddSimpleProductTest();
|
|
@ -0,0 +1,6 @@
|
|||
/*
|
||||
* Internal dependencies
|
||||
*/
|
||||
const { runAddVariableProductTest } = require( '@woocommerce/e2e-core-tests' );
|
||||
|
||||
runAddVariableProductTest();
|
|
@ -0,0 +1,6 @@
|
|||
/*
|
||||
* Internal dependencies
|
||||
*/
|
||||
const { runCreateCouponTest } = require( '@woocommerce/e2e-core-tests' );
|
||||
|
||||
runCreateCouponTest();
|
|
@ -0,0 +1,6 @@
|
|||
/*
|
||||
* Internal dependencies
|
||||
*/
|
||||
const { runCreateOrderTest } = require( '@woocommerce/e2e-core-tests' );
|
||||
|
||||
runCreateOrderTest();
|
|
@ -0,0 +1,6 @@
|
|||
/*
|
||||
* Internal dependencies
|
||||
*/
|
||||
const { runUpdateGeneralSettingsTest } = require( '@woocommerce/e2e-core-tests' );
|
||||
|
||||
runUpdateGeneralSettingsTest();
|
|
@ -0,0 +1,6 @@
|
|||
/*
|
||||
* Internal dependencies
|
||||
*/
|
||||
const { runProductSettingsTest } = require( '@woocommerce/e2e-core-tests' );
|
||||
|
||||
runProductSettingsTest();
|
|
@ -0,0 +1,6 @@
|
|||
/*
|
||||
* Internal dependencies
|
||||
*/
|
||||
const { runTaxSettingsTest } = require( '@woocommerce/e2e-core-tests' );
|
||||
|
||||
runTaxSettingsTest();
|
Loading…
Reference in New Issue