Skip to content

Commit 2871380

Browse files
[pre-commit.ci lite] apply automatic fixes
1 parent 7536c25 commit 2871380

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

contentcuration/contentcuration/frontend/channelList/views/Channel/__tests__/channelInvitation.spec.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ describe('channelInvitation', () => {
4545
await wrapper.find('[data-test="decline"]').trigger('click');
4646
const declineInvitation = jest.spyOn(wrapper.vm, 'declineInvitation');
4747
declineInvitation.mockImplementation(() => Promise.resolve());
48-
await wrapper.findComponent('[data-testid="channel-invitation-modal"]').find('form').trigger('submit');
48+
await wrapper
49+
.findComponent('[data-testid="channel-invitation-modal"]')
50+
.find('form')
51+
.trigger('submit');
4952
expect(declineInvitation).toHaveBeenCalledWith(invitationID);
5053
});
5154
});

0 commit comments

Comments
 (0)