Experiment to reproduce bug on Travis CI

This commit is contained in:
josieusa 2017-01-11 14:56:57 +01:00
parent 04f25b6134
commit 2aabc83bdf
1 changed files with 2 additions and 2 deletions

View File

@ -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);
});
});