diff --git a/.eslintignore b/.eslintignore index 81a2e8cc..e14c8cb9 100644 --- a/.eslintignore +++ b/.eslintignore @@ -2,3 +2,4 @@ public/ vendor/ coverage/ plugins/ +laradock/ diff --git a/resources/assets/tests/views/auth/Login.test.ts b/resources/assets/tests/views/auth/Login.test.ts index c1e75af8..763641a9 100644 --- a/resources/assets/tests/views/auth/Login.test.ts +++ b/resources/assets/tests/views/auth/Login.test.ts @@ -25,7 +25,9 @@ test('login', async () => { .mockResolvedValueOnce({ code: 1, data: { login_fails: 4 } }) .mockResolvedValueOnce({ code: 1, data: { login_fails: 4 } }) .mockResolvedValueOnce({ code: 1, data: { login_fails: 4 } }) - .mockResolvedValueOnce({ code: 0, message: 'ok', data: { redirectTo: '' } }) + .mockResolvedValueOnce({ + code: 0, message: 'ok', data: { redirectTo: '' }, + }) const wrapper = mount(Login, { stubs: { Captcha } }) const form = wrapper.find('form') const warning = wrapper.find('.callout-warning')