From e618b3d0aa4f7f36b48cf4d156f13b5c9bd03109 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 18 Jun 2020 14:18:09 +0300 Subject: [PATCH] fix grunt tests --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index a79fb5d678..e2360ca944 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -313,11 +313,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 --bootstrap=./vendor/autoload.php ./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 --bootstrap=./vendor/autoload.php ./tests/integration", {stdio: 'inherit'}); }); grunt.registerTask("zip", function() {