aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/routes.test.js
diff options
context:
space:
mode:
authorMarvin Borner2019-01-18 21:07:39 +0100
committerMarvin Borner2019-01-18 21:07:39 +0100
commit7dd78773cb6c0c3ccfa6784fde98e4ad923b0bc9 (patch)
tree09083cadac80892a759776cf6ef3b030400f23ab /test/routes.test.js
Initial boilerplate
Diffstat (limited to 'test/routes.test.js')
-rw-r--r--test/routes.test.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/routes.test.js b/test/routes.test.js
new file mode 100644
index 0000000..3dc100e
--- /dev/null
+++ b/test/routes.test.js
@@ -0,0 +1,28 @@
+import request from 'supertest';
+import app from '../src/app.js';
+
+describe('GET /', () => {
+ 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 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);
+ });
+});