diff options
Diffstat (limited to 'test/website.js')
-rw-r--r-- | test/website.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/website.js b/test/website.js index 4b1c4de..6a0fd1c 100644 --- a/test/website.js +++ b/test/website.js @@ -16,7 +16,11 @@ describe('Website generator', function () { it('should correctly copy assets', function() { book.should.have.file('gitbook'); book.should.have.file('gitbook/app.js'); - book.should.have.file('gitbook/website.css'); + book.should.have.file('gitbook/style.css'); + }); + + it('should not copy ebook assets', function() { + book.should.not.have.file('gitbook/ebook.css'); }); }); }); |