We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0552007 commit 3218ee7Copy full SHA for 3218ee7
test/parsing.js
@@ -71,12 +71,12 @@ describe('Book parsing', function () {
71
72
assert.equal(_.size(NAVIGATION), 2);
73
assert(NAVIGATION["intro.md"])
74
- assert.equal(NAVIGATION["intro.md"].title, "Introduction");
+ assert.equal(NAVIGATION["intro.md"].title, "");
75
assert.equal(NAVIGATION["intro.md"].prev, null);
76
assert.equal(NAVIGATION["intro.md"].next.title, "Article 1");
77
78
assert.equal(NAVIGATION["sub/test1.md"].title, "Article 1");
79
- assert.equal(NAVIGATION["sub/test1.md"].prev.title, "Introduction");
+ assert.equal(NAVIGATION["sub/test1.md"].prev.title, "");
80
assert.equal(NAVIGATION["sub/test1.md"].next, null);
81
});
82
0 commit comments