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 dfba9f8..2445493 100644
--- a/test/app.test.js
+++ b/test/app.test.js
@@ -43,6 +43,8 @@ test("homepage", async function(t) {
 
   t.is($("head > title").text(), "John Doe", "head title is site author");
   t.is($("main").length, 1, "only one <main> tag");
+  t.is($("nav a").first().text(), "Home", "nav link has text");
+  t.is($("nav a").first().attr("href"), "/", "nav links to homepage");
 
   const options = toMicroformatsOptions($);
   const count = await mf.countAsync(options);