test(integration/model): replace log with actual guard
This commit is contained in:
parent
e3faad9cda
commit
3f90a77a7b
|
@ -50,7 +50,8 @@ describe('bpmn-moddle', function() {
|
||||||
|
|
||||||
// when
|
// when
|
||||||
parse(xml, function(err) {
|
parse(xml, function(err) {
|
||||||
console.log('parsed in ' + (new Date().getTime() - start) + ' ms');
|
expect((new Date().getTime() - start)).to.be.below(500);
|
||||||
|
|
||||||
done(err);
|
done(err);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue