blob: e835a6e5b62f90c1cccc3d5a66051adbf0d3d48d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
var path = require('path');
var _ = require('lodash');
var assert = require('assert');
var fs = require("fs");
var fsUtil = require("../lib/utils/fs");
describe('eBook Generator', function () {
it('should correctly generate ebook pages', function(done) {
testGeneration(books[1], "ebook", function(output) {
assert(fs.existsSync(path.join(output, "SUMMARY.html")));
}, done);
});
});
|