diff options
author | Alan Pearce | 2017-06-23 23:06:43 +0200 |
---|---|---|
committer | Alan Pearce | 2017-06-23 23:06:43 +0200 |
commit | f9fd0d795fb7bff10cb759f2300200d50b0fbab3 (patch) | |
tree | 8e3e68bce0742ea4e5d6538a8e437ec2512f9518 /test | |
parent | 4d6378483d46806d0006d6e5755e0eedd6372154 (diff) | |
download | homestead-f9fd0d795fb7bff10cb759f2300200d50b0fbab3.tar.lz homestead-f9fd0d795fb7bff10cb759f2300200d50b0fbab3.tar.zst homestead-f9fd0d795fb7bff10cb759f2300200d50b0fbab3.zip |
feat: Streaming DOM templates via rheo
Diffstat (limited to 'test')
-rw-r--r-- | test/index.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/index.test.js b/test/index.test.js index 73bbd19..769097f 100644 --- a/test/index.test.js +++ b/test/index.test.js @@ -12,7 +12,7 @@ test('homepage', t => { .get('/') .expect(200) .expect(/<title>Test Site<\/title>/) - .expect(/hello world/) + .expect(/<h1>Test Site<\/h1>/) .expect(/This is a test/) .then(() => t.pass()) }) |