Skip to content

Commit c2ef2ec

Browse files
author
Walker Leite
committed
style(server): fix lint errors
1 parent 4d45501 commit c2ef2ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

template/test/server/index.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import server from '../../index';
21
import request from 'supertest';
2+
import server from '../../index';
33

44
describe('Project Index', () => {
55
beforeEach((done) => {
@@ -9,7 +9,7 @@ describe('Project Index', () => {
99

1010
afterEach(() => server.close());
1111

12-
it('should serve client files', async () => {
12+
it('should serve client files', async() => {
1313
const res = await request(server).get('/index.html');
1414
expect(res.statusCode).toBe(200);
1515
});

0 commit comments

Comments
 (0)