From 4dacb50e57bf6fd68de10ecb1e574becbedf11ee Mon Sep 17 00:00:00 2001 From: x13machine Date: Mon, 11 Mar 2019 15:02:13 -0500 Subject: [PATCH] fix test failure 2 --- test/specs/original/specs-spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/specs/original/specs-spec.js b/test/specs/original/specs-spec.js index 2610b3bb55..d0869dd472 100644 --- a/test/specs/original/specs-spec.js +++ b/test/specs/original/specs-spec.js @@ -3,7 +3,7 @@ var specTests = require('../../'); it('should run spec tests', function () { // hide output spyOn(console, 'log'); - if (!specTests({stop: true})) { + if (!specTests(['', '', '--stop'])) { // if tests fail rerun tests and show output console.log.and.callThrough(); specTests();