mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-21 01:53:26 +00:00
12 lines
339 B
JavaScript
12 lines
339 B
JavaScript
|
|
describe('JSON generator', function () {
|
|
describe('Basic Book', function() {
|
|
it('should correctly output a README.json', function() {
|
|
return books.generate("basic", "json")
|
|
.then(function(book) {
|
|
book.should.have.file("README.json");
|
|
});
|
|
});
|
|
});
|
|
});
|