all repos — archive/homestead @ 33171a749162685e42650f82041cd2af0136718d

My future indieweb platform

feat(posts): render posts as markdown

Alan Pearce
commit

33171a749162685e42650f82041cd2af0136718d

parent

1a36d4dc311a86246fe854da888af01f8195368e

1 file changed, 1 insertion(+), 1 deletion(-)

changed files
M test/index.test.jstest/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()) })