From 2aabc83bdfb64b65831594c55bdfbf7f30e86063 Mon Sep 17 00:00:00 2001 From: josieusa Date: Wed, 11 Jan 2017 14:56:57 +0100 Subject: [PATCH] Experiment to reproduce bug on Travis CI --- test/main.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/main.test.js b/test/main.test.js index 4aa888b..3106273 100644 --- a/test/main.test.js +++ b/test/main.test.js @@ -142,7 +142,7 @@ describe('LoopBack Context', function() { }); }); - it('fails at most once without bind option and when v3.7.7 promises', + it('fails once without bind option and when v3.7.7 promises', function() { return Promise.all([ runWithPushedValue('test-value-3'), @@ -150,7 +150,7 @@ describe('LoopBack Context', function() { ]) .then(function verify(values) { var failureCount = getFailureCount(values); - expect(failureCount).to.be.at.most(1); + expect(failureCount).to.equal(1); }); });