summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ebook.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/ebook.js b/test/ebook.js
index 6c84462..5caf28b 100644
--- a/test/ebook.js
+++ b/test/ebook.js
@@ -36,6 +36,11 @@ describe('eBook generator', function () {
});
});
+ it('should correctly copy print.css', function() {
+ book.should.have.file('styles');
+ book.should.have.file('styles/print.css');
+ });
+
it('should remove default print.css', function() {
var PAGE = fs.readFileSync(
path.join(book.options.output, 'index.html'),
@@ -61,10 +66,5 @@ describe('eBook generator', function () {
}
});
});
-
- it('should correctly copy print.css', function() {
- book.should.have.file('styles');
- book.should.have.file('styles/print.css');
- });
});
});