From 5c2ea2ccda5e9c5ec31c5b6df7710c502d5eb0ff Mon Sep 17 00:00:00 2001 From: RainLoop Team Date: Fri, 1 Jul 2016 01:58:09 +0300 Subject: [PATCH] Check test's dump --- tests/Common/NpmTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Common/NpmTest.php b/tests/Common/NpmTest.php index c2de34ac0..7799084f4 100644 --- a/tests/Common/NpmTest.php +++ b/tests/Common/NpmTest.php @@ -7,7 +7,9 @@ class NpmTest extends \PHPUnit_Framework_TestCase public function testJsValidate() { $out = array(); - exec('gulp js:validate', $out); + exec('gulp js:eslint', $out); + + var_dump($out); $this->assertTrue(0 < \count($out)); $this->assertTrue(false === \strpos(\implode('|', $out), 'problem'));