From 2abf58c832112e6ef950bbd6a7616eac22ac4b10 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 24 Jan 2019 17:29:02 +0100 Subject: Reformatted code --- test/routes.test.js | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'test') diff --git a/test/routes.test.js b/test/routes.test.js index 3dc100e..025c17c 100644 --- a/test/routes.test.js +++ b/test/routes.test.js @@ -2,27 +2,27 @@ import request from 'supertest'; import app from '../src/app.js'; describe('GET /', () => { - it('should render properly', async () => { - await request(app).get('/').expect(200); - }); + it('should render properly', async () => { + await request(app).get('/').expect(200); + }); }); describe('GET /list', () => { - it('should render properly with valid parameters', async () => { - await request(app) - .get('/list') - .query({title: 'List title'}) - .expect(200); - }); + it('should render properly with valid parameters', async () => { + await request(app) + .get('/list') + .query({title: 'List title'}) + .expect(200); + }); - it('should error without a valid parameter', async () => { - await request(app).get('/list').expect(500); - }); + it('should error without a valid parameter', async () => { + await request(app).get('/list').expect(500); + }); }); describe('GET /404', () => { - it('should return 404 for non-existent URLs', async () => { - await request(app).get('/404').expect(404); - await request(app).get('/notfound').expect(404); - }); + it('should return 404 for non-existent URLs', async () => { + await request(app).get('/404').expect(404); + await request(app).get('/notfound').expect(404); + }); }); -- cgit v1.2.3