31 lines
779 B
JavaScript
31 lines
779 B
JavaScript
export * from './helper';
|
|
|
|
import {
|
|
insertCSS
|
|
} from './helper';
|
|
|
|
insertCSS('bpmn-js.css', require('../assets/bpmn-js.css'));
|
|
|
|
insertCSS('diagram-js.css', require('diagram-js/assets/diagram-js.css'));
|
|
|
|
insertCSS('bpmn-embedded.css', require('bpmn-font/dist/css/bpmn-embedded.css'));
|
|
|
|
insertCSS('diagram-js-testing.css',
|
|
'body .test-container { height: auto }' +
|
|
'body .test-content-container { height: 90vh; }'
|
|
);
|
|
|
|
|
|
import ChaiMatch from 'chai-match';
|
|
import BoundsMatchers from './matchers/BoundsMatchers';
|
|
import ConnectionMatchers from './matchers/ConnectionMatchers';
|
|
import JSONMatcher from './matchers/JSONMatcher';
|
|
|
|
/* global chai */
|
|
|
|
// add suite specific matchers
|
|
chai.use(ChaiMatch);
|
|
chai.use(BoundsMatchers);
|
|
chai.use(ConnectionMatchers);
|
|
chai.use(JSONMatcher);
|