Skip to content

Commit

Permalink
chore: fix tests to reflect options argument
Browse files Browse the repository at this point in the history
  • Loading branch information
marstamm committed Oct 1, 2024
1 parent 1c5f4c2 commit 30de82d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions client/src/app/__tests__/EmptyTabSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ describe('<EmptyTab>', function() {
// then
expect(onAction).to.have.callCount(6);
expect(onAction.args).to.eql([
[ 'create-cloud-bpmn-diagram' ],
[ 'create-cloud-dmn-diagram' ],
[ 'create-cloud-form' ],
[ 'create-bpmn-diagram' ],
[ 'create-dmn-diagram' ],
[ 'create-form' ]
[ 'create-cloud-bpmn-diagram', undefined ],
[ 'create-cloud-dmn-diagram', undefined ],
[ 'create-cloud-form', undefined ],
[ 'create-bpmn-diagram', undefined ],
[ 'create-dmn-diagram', undefined ],
[ 'create-form', undefined ]
]);
});

Expand Down

0 comments on commit 30de82d

Please sign in to comment.