From 03b3c4a9387a553300243ca317660bec1a0b945a Mon Sep 17 00:00:00 2001 From: Christopher Hiller Date: Mon, 23 Apr 2018 11:10:51 -0700 Subject: [PATCH] fix missing assertion in an "options" integration test Signed-off-by: Christopher Hiller --- test/integration/options.spec.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/integration/options.spec.js b/test/integration/options.spec.js index 1b705a1844..e7a690d898 100644 --- a/test/integration/options.spec.js +++ b/test/integration/options.spec.js @@ -62,10 +62,9 @@ describe('options', function() { done(err); return; } - expect(res, 'to have failed').and( - 'to have run test', - 'should only display this error' - ); + expect(res, 'to have failed') + .and('to have failed test count', 1) + .and('to have run test', 'should only display this error'); done(); }); });