summary refs log tree commit diff stats
path: root/test/index.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/index.test.js')
-rw-r--r--test/index.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/index.test.js b/test/index.test.js
index a81dbb6..e13e52c 100644
--- a/test/index.test.js
+++ b/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())
 })