From c54f43c511df8f6c747b7abc11236fddbf28cd94 Mon Sep 17 00:00:00 2001 From: Dorian Date: Wed, 20 Apr 2022 22:42:46 +0200 Subject: [PATCH] fix Prettier rules --- test/component/e2e.spec.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/component/e2e.spec.js b/test/component/e2e.spec.js index f03699e..4695f73 100644 --- a/test/component/e2e.spec.js +++ b/test/component/e2e.spec.js @@ -14,7 +14,7 @@ describe('E2E', () => { response: { status: 200, body: { - id: 1 + id: 1, } } }; @@ -23,10 +23,10 @@ describe('E2E', () => { return { request: { method: 'POST', - path: '/api/users' + path: '/api/users', }, response: { - status: 200 + status: 200, } }; }); @@ -34,10 +34,10 @@ describe('E2E', () => { return { request: { method: 'DELETE', - path: '/api/users/1' + path: '/api/users/1', }, response: { - status: 200 + status: 200, } }; }); @@ -324,4 +324,4 @@ describe('E2E', () => { after(() => {}); -}); \ No newline at end of file +});