mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-19 09:06:03 +00:00
9 lines
272 B
JavaScript
9 lines
272 B
JavaScript
describe('Structure', function () {
|
|
it('should prioritize structure defined in book.json', function() {
|
|
return books.parse('structure')
|
|
.then(function(book) {
|
|
book.readmeFile.should.equal('README.adoc');
|
|
});
|
|
});
|
|
});
|