feat(posts): render posts as markdown
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M test/index.test.js → test/index.test.js
@@ -18,7 +18,7 @@ test('post', t => { return request(app.listen()) .get('/post/testfile') .expect(200) - .expect(/Lorem ipsum/) + .expect(/<h1>Lorem ipsum<\/h1>/) .then(() => t.pass()) })