diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-09-15 14:20:32 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-09-15 14:20:32 +0200 |
commit | 1fd00068595dfced5a0f16ac05ae2553d09608bc (patch) | |
tree | 1605473bf22c7e4ab90a6cc9bebf5cb807fa1d90 /test/website.js | |
parent | 5a205346e3d125b1c834220ce98a206d88697811 (diff) | |
download | gitbook-1fd00068595dfced5a0f16ac05ae2553d09608bc.zip gitbook-1fd00068595dfced5a0f16ac05ae2553d09608bc.tar.gz gitbook-1fd00068595dfced5a0f16ac05ae2553d09608bc.tar.bz2 |
Lint all tests
Diffstat (limited to 'test/website.js')
-rw-r--r-- | test/website.js | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/test/website.js b/test/website.js index 91340a0..ebbd18c 100644 --- a/test/website.js +++ b/test/website.js @@ -1,8 +1,5 @@ -var fs = require('fs'); -var path = require('path'); - -describe('Website generator', function () { - describe('Basic Book', function() { +describe("Website generator", function () { + describe("Basic Book", function() { var book; before(function() { @@ -12,11 +9,11 @@ describe('Website generator', function () { }); }); - it('should correctly output an index.html', function() { + it("should correctly output an index.html", function() { book.should.have.file("index.html"); }); - it('should correctly copy assets', function() { + it("should correctly copy assets", function() { book.should.have.file("gitbook"); book.should.have.file("gitbook/app.js"); book.should.have.file("gitbook/style.css"); |