all repos — archive/homestead @ 1f2a6245ab1e503dee017ab617aaeda816ecb383

My future indieweb platform

feat: add tags endpoint

Alan Pearce
commit

1f2a6245ab1e503dee017ab617aaeda816ecb383

parent

69af7f12ec17f0aba65b0e23ef4045ee28f2dac8

1 file changed, 8 insertions(+), 0 deletions(-)

changed files
M test/index.test.jstest/index.test.js
@@ -21,3 +21,11 @@ .expect(200)
.expect(/Lorem ipsum/) .then(() => t.pass()) }) + +test('tags', t => { + return request(app.listen()) + .get('/tags/a') + .expect(200) + .expect(/This is a test/) + .then(() => t.pass()) +})