From 69af7f12ec17f0aba65b0e23ef4045ee28f2dac8 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 18 Jun 2017 13:36:29 +0200 Subject: feat: add single post endpoint --- test/index.test.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'test/index.test.js') diff --git a/test/index.test.js b/test/index.test.js index ebac87d..897438c 100644 --- a/test/index.test.js +++ b/test/index.test.js @@ -5,7 +5,7 @@ const request = require('supertest') process.env.POST_DIR = path.resolve(__dirname, '../test/data/') const app = require('../src/index.js') -test(t => { +test('homepage', t => { return request(app.listen()) .get('/') .expect(200) @@ -13,3 +13,11 @@ test(t => { .expect(/This is a test/) .then(() => t.pass()) }) + +test('post', t => { + return request(app.listen()) + .get('/post/testfile') + .expect(200) + .expect(/Lorem ipsum/) + .then(() => t.pass()) +}) -- cgit 1.4.1