diff --git a/plugins/woocommerce-blocks/tests/bin/install-wp-tests.sh b/plugins/woocommerce-blocks/tests/bin/install-wp-tests.sh index 49c764d54f1..09de662d531 100755 --- a/plugins/woocommerce-blocks/tests/bin/install-wp-tests.sh +++ b/plugins/woocommerce-blocks/tests/bin/install-wp-tests.sh @@ -146,9 +146,6 @@ install_deps() { php wp-cli.phar core config --dbname=$DB_NAME --dbuser=$DB_USER --dbpass=$DB_PASS --dbhost=$DB_HOST --dbprefix=wptests_ php wp-cli.phar core install --url="$WP_SITE_URL" --title="Example" --admin_user=admin --admin_password=password --admin_email=info@example.com --path=$WP_CORE_DIR --skip-email - # Install Gutenberg - php wp-cli.phar plugin install gutenberg --activate - # Install WooCommerce cd "wp-content/plugins/" # As zip file does not include tests, we have to get it from git repo. diff --git a/plugins/woocommerce-blocks/tests/bootstrap.php b/plugins/woocommerce-blocks/tests/bootstrap.php index 8ed992c82fa..be7fa75ff7b 100644 --- a/plugins/woocommerce-blocks/tests/bootstrap.php +++ b/plugins/woocommerce-blocks/tests/bootstrap.php @@ -89,9 +89,6 @@ function wgpb_test_includes() { * Manually load the plugin being tested. */ function _manually_load_plugin() { - echo esc_html( 'Loading Gutenberg' . PHP_EOL ); - require dirname( dirname( dirname( __FILE__ ) ) ) . '/gutenberg/gutenberg.php'; - echo esc_html( 'Loading WooCommerce' . PHP_EOL ); define( 'WC_TAX_ROUNDING_MODE', 'auto' ); define( 'WC_USE_TRANSACTIONS', false );