restore ability to run individual tests

This commit is contained in:
Ron Rennick 2020-09-30 17:05:02 -03:00
parent 72219b2323
commit be15429c30
11 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,6 @@
/*
* Internal dependencies
*/
const { runActivationTest } = require( '@woocommerce/e2e-core-tests' );
runActivationTest();

View File

@ -0,0 +1,6 @@
/*
* Internal dependencies
*/
const { runInitialStoreSettingsTest } = require( '@woocommerce/e2e-core-tests' );
runInitialStoreSettingsTest();

View File

@ -0,0 +1,6 @@
/*
* Internal dependencies
*/
const { runOnboardingFlowTest } = require( '@woocommerce/e2e-core-tests' );
runOnboardingFlowTest();

View File

@ -0,0 +1,6 @@
/*
* Internal dependencies
*/
const { runMerchantTests } = require( '@woocommerce/e2e-core-tests' );
runMerchantTests();

View File

@ -0,0 +1,6 @@
/*
* Internal dependencies
*/
const { runAddSimpleProductTest } = require( '@woocommerce/e2e-core-tests' );
runAddSimpleProductTest();

View File

@ -0,0 +1,6 @@
/*
* Internal dependencies
*/
const { runAddVariableProductTest } = require( '@woocommerce/e2e-core-tests' );
runAddVariableProductTest();

View File

@ -0,0 +1,6 @@
/*
* Internal dependencies
*/
const { runCreateCouponTest } = require( '@woocommerce/e2e-core-tests' );
runCreateCouponTest();

View File

@ -0,0 +1,6 @@
/*
* Internal dependencies
*/
const { runCreateOrderTest } = require( '@woocommerce/e2e-core-tests' );
runCreateOrderTest();

View File

@ -0,0 +1,6 @@
/*
* Internal dependencies
*/
const { runUpdateGeneralSettingsTest } = require( '@woocommerce/e2e-core-tests' );
runUpdateGeneralSettingsTest();

View File

@ -0,0 +1,6 @@
/*
* Internal dependencies
*/
const { runProductSettingsTest } = require( '@woocommerce/e2e-core-tests' );
runProductSettingsTest();

View File

@ -0,0 +1,6 @@
/*
* Internal dependencies
*/
const { runTaxSettingsTest } = require( '@woocommerce/e2e-core-tests' );
runTaxSettingsTest();