blob: fb00767a16dd209819a98a22b669e70ea5753160 [file] [log] [blame]
const assert = require('assert');
const app = require('../../src/app');
describe('\'bpmnValidate\' service', () => {
it('registered the service', () => {
const service = app.service('bpmn-validate');
assert.ok(service, 'Registered the service');
});
});