diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-03-07 10:40:25 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-03-07 10:40:25 +0100 |
commit | b4bdf97cfe84994a4e2e04f196e0ebb4849b188f (patch) | |
tree | eabe2904fb68684960c469a6286f1628eaea0bd0 /test/init.js | |
parent | bf98984012c493aebb2258902e1722f0ed0d3527 (diff) | |
download | gitbook-b4bdf97cfe84994a4e2e04f196e0ebb4849b188f.zip gitbook-b4bdf97cfe84994a4e2e04f196e0ebb4849b188f.tar.gz gitbook-b4bdf97cfe84994a4e2e04f196e0ebb4849b188f.tar.bz2 |
Fix linting errors
Diffstat (limited to 'test/init.js')
-rw-r--r-- | test/init.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/init.js b/test/init.js index e1e8a4a..200f795 100644 --- a/test/init.js +++ b/test/init.js @@ -19,7 +19,7 @@ describe('Init', function() { rootFolder.should.have.file('hello.md'); rootFolder.should.have.file('hello 2.md'); }); - }) + }); }); it('should create file subfolder', function() { @@ -38,7 +38,7 @@ describe('Init', function() { rootFolder.should.have.file('test/hello.md'); rootFolder.should.have.file('test/test2/world.md'); }); - }) + }); }); it('should create SUMMARY if non-existant', function() { @@ -51,7 +51,7 @@ describe('Init', function() { rootFolder.should.have.file('SUMMARY.md'); rootFolder.should.have.file('README.md'); }); - }) + }); }); }); |