summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorAlan Pearce2017-06-18 22:12:48 +0200
committerAlan Pearce2017-06-18 22:13:13 +0200
commit7455233d74ffe056c4a5927c9272516fdc0e5dfc (patch)
tree3cc545702f4c28aa69f885669faa9c00a273d3db /test
parent4ce0f287b64d2d55c9bdd31dee418ba405762273 (diff)
downloadhomestead-7455233d74ffe056c4a5927c9272516fdc0e5dfc.tar.lz
homestead-7455233d74ffe056c4a5927c9272516fdc0e5dfc.tar.zst
homestead-7455233d74ffe056c4a5927c9272516fdc0e5dfc.zip
feat: make templates extend common layout
Diffstat (limited to 'test')
-rw-r--r--test/index.test.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/index.test.js b/test/index.test.js
index 5b5e991..73bbd19 100644
--- a/test/index.test.js
+++ b/test/index.test.js
@@ -11,6 +11,7 @@ test('homepage', t => {
   return request(app.listen())
     .get('/')
     .expect(200)
+    .expect(/<title>Test Site<\/title>/)
     .expect(/hello world/)
     .expect(/This is a test/)
     .then(() => t.pass())