feat: add tags endpoint
1 file changed, 8 insertions(+), 0 deletions(-)
changed files
M test/index.test.js → test/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()) +})