test(integration/model): replace log with actual guard

This commit is contained in:
Nico Rehwaldt 2015-07-20 16:48:14 +02:00
parent e3faad9cda
commit 3f90a77a7b
1 changed files with 2 additions and 1 deletions

View File

@ -50,7 +50,8 @@ describe('bpmn-moddle', function() {
// when
parse(xml, function(err) {
console.log('parsed in ' + (new Date().getTime() - start) + ' ms');
expect((new Date().getTime() - start)).to.be.below(500);
done(err);
});