Skip to content

Commit

Permalink
v 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Marketto committed Nov 25, 2019
1 parent c361e72 commit c41c822
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test/mockettaro-rest.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,12 @@ describe('Mockettaro REST resources', ()=>{
shop.name.should.be.equals('Figaro');
shop.should.be.an('object').that.own.property('type');
shop.type.should.be.equals('Barber shop');
done();
})
.catch(err => err.should.be.not.ok)
.finally(done);
.catch(err => {
err.should.be.not.ok;
done();
});
});
});
});
Expand Down

0 comments on commit c41c822

Please sign in to comment.