Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
csouchet committed Aug 25, 2023
1 parent 9b92550 commit a4fb8b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/performance/bpmn.load.performance.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('load performance', () => {

const metric = { ...calculateMetrics(metricsStart, metricsEnd), run: run };
metricsArray.push(metric);
expect(true).toBe(true);
expect(true).toBeTrue();
});
});
afterAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/performance/bpmn.navigation.performance.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe('Mouse wheel zoom performance', () => {

const metric = { ...calculateMetrics(metricsStart, metricsEnd), run: run };
metricsArray.push(metric);
expect(true).toBe(true);
expect(true).toBeTrue();
});
});
afterAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/component/registry/bpmn-model-registry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('Bpmn Model registry', () => {
const callback = jest.fn();
bpmnModelRegistry.registerOnLoadCallback(callback);
bpmnModelRegistry.load(startEventInModel('id', 'name'));
expect(callback).toHaveBeenCalledTimes(1);
expect(callback).toHaveBeenCalledOnce();
});

it('search sequence flow', () => {
Expand Down

0 comments on commit a4fb8b5

Please sign in to comment.