summary refs log tree commit diff stats
path: root/test/app.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/app.test.js')
-rw-r--r--test/app.test.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/app.test.js b/test/app.test.js
index 92a7a76..d298a03 100644
--- a/test/app.test.js
+++ b/test/app.test.js
@@ -33,6 +33,7 @@ test("homepage", t => {
       t.is($("h1").text(), "John Doe");
       t.is($("main").length, 1);
       t.is($("main .posts").length, 1);
+      t.is($(".post:first-of-type a").attr("href"), "/post/testfile");
       return $;
     })
     .then(toMicroformatsOptions)
@@ -94,6 +95,7 @@ test("tags", t => {
     .then($ => {
       t.is($("head > title").text(), "A ยท John Doe");
       t.is($(".post a").text(), "This is a test");
+      t.is($(".post:first-of-type a").attr("href"), "/post/testfile");
     });
 });