From e43265fe57e691032f9cdd3dc8bf463224312385 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Wed, 23 Dec 2020 09:33:19 +0200 Subject: [PATCH] gruntfile fix --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 90be173ab4..1ea77f9f43 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -315,11 +315,11 @@ module.exports = function (grunt) { }); grunt.registerTask("unit-tests-run", function() { - cp.execSync("vendor/bin/phpunit --bootstrap=./vendor/autoload.php ./tests/unit", {stdio: 'inherit'}); + cp.execSync("vendor/bin/phpunit ./tests/unit", {stdio: 'inherit'}); }); grunt.registerTask("integration-tests-run", function() { - cp.execSync("vendor/bin/phpunit --bootstrap=./vendor/autoload.php ./tests/integration", {stdio: 'inherit'}); + cp.execSync("vendor/bin/phpunit ./tests/integration", {stdio: 'inherit'}); }); grunt.registerTask("zip", function() {