From 3f90a77a7b388a5a2ea14aa757ea6fcc4707cf8c Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Mon, 20 Jul 2015 16:48:14 +0200 Subject: [PATCH] test(integration/model): replace log with actual guard --- test/integration/model/BpmnModdleSpec.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/integration/model/BpmnModdleSpec.js b/test/integration/model/BpmnModdleSpec.js index 1a714d41..e9e5dc44 100644 --- a/test/integration/model/BpmnModdleSpec.js +++ b/test/integration/model/BpmnModdleSpec.js @@ -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); });