yarn lint --fix

This commit is contained in:
ogerly 2021-12-28 17:39:26 +01:00
parent 53e25ab119
commit bf73d6be42
2 changed files with 2 additions and 7 deletions

View File

@ -53,9 +53,7 @@ describe('ConfirmRegisterMailFormular', () => {
})
it('toasts a success message', () => {
expect(toastSuccessMock).toBeCalledWith(
'unregister_mail.success',
)
expect(toastSuccessMock).toBeCalledWith('unregister_mail.success')
})
})
@ -67,9 +65,7 @@ describe('ConfirmRegisterMailFormular', () => {
})
it('toasts an error message', () => {
expect(toastErrorMock).toBeCalledWith(
'unregister_mail.error',
)
expect(toastErrorMock).toBeCalledWith('unregister_mail.error')
})
})
})

View File

@ -32,7 +32,6 @@ const mocks = {
openCreations: 2,
},
},
$t: jest.fn((t) => t),
}
describe('Overview', () => {