From ae5ec300fffe8be779cd14b9632da47cb131ca6a Mon Sep 17 00:00:00 2001 From: elweyn Date: Mon, 25 Jul 2022 12:08:02 +0200 Subject: [PATCH] Fix linting. --- .../src/components/Contributions/ContributionList.spec.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Contributions/ContributionList.spec.js b/frontend/src/components/Contributions/ContributionList.spec.js index d49f80372..a1dfc934d 100644 --- a/frontend/src/components/Contributions/ContributionList.spec.js +++ b/frontend/src/components/Contributions/ContributionList.spec.js @@ -107,7 +107,9 @@ describe('ContributionList', () => { describe('delete contribution', () => { beforeEach(() => { - wrapper.findComponent({ name: 'ContributionListItem' }).vm.$emit('delete-contribution', { id: 2 }) + wrapper + .findComponent({ name: 'ContributionListItem' }) + .vm.$emit('delete-contribution', { id: 2 }) }) it('emits delete contribution', () => {