chore(tests): use canvas.deferUpdate=false per default

This commit is contained in:
Nico Rehwaldt 2016-03-16 23:44:18 +01:00
parent ff0d88bb90
commit a5b8f379fc
1 changed files with 6 additions and 1 deletions

View File

@ -76,7 +76,12 @@ function bootstrapBpmnJS(BpmnJS, diagram, options, locals) {
_locals = _locals();
}
_options = merge({ container: testContainer }, OPTIONS, _options);
_options = merge({
container: testContainer,
canvas: {
deferUpdate: false
}
}, OPTIONS, _options);
if (_locals) {
var mockModule = {};