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/conrefs.js | |
parent | 5a205346e3d125b1c834220ce98a206d88697811 (diff) | |
download | gitbook-1fd00068595dfced5a0f16ac05ae2553d09608bc.zip gitbook-1fd00068595dfced5a0f16ac05ae2553d09608bc.tar.gz gitbook-1fd00068595dfced5a0f16ac05ae2553d09608bc.tar.bz2 |
Lint all tests
Diffstat (limited to 'test/conrefs.js')
-rw-r--r-- | test/conrefs.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/conrefs.js b/test/conrefs.js index 7e044f5..4f654b0 100644 --- a/test/conrefs.js +++ b/test/conrefs.js @@ -1,7 +1,7 @@ -var fs = require('fs'); -var path = require('path'); +var fs = require("fs"); +var path = require("path"); -describe('ConRefs', function () { +describe("ConRefs", function () { var book, readme; before(function() { @@ -16,7 +16,7 @@ describe('ConRefs', function () { }); }); - it('should handle local references', function() { + it("should handle local references", function() { readme.should.be.html({ ".page-inner p#t1": { count: 1, @@ -26,7 +26,7 @@ describe('ConRefs', function () { }); }); - it('should handle local references with absolute paths', function() { + it("should handle local references with absolute paths", function() { readme.should.be.html({ ".page-inner p#t2": { count: 1, @@ -36,7 +36,7 @@ describe('ConRefs', function () { }); }); - it('should correctly include file from git reference', function() { + it("should correctly include file from git reference", function() { readme.should.be.html({ ".page-inner p#t3": { count: 1, @@ -46,7 +46,7 @@ describe('ConRefs', function () { }); }); - it('should correctly handle deep include in git reference', function() { + it("should correctly handle deep include in git reference", function() { readme.should.be.html({ ".page-inner p#t4": { count: 1, @@ -56,7 +56,7 @@ describe('ConRefs', function () { }); }); - it('should correctly handle absolute include in git reference', function() { + it("should correctly handle absolute include in git reference", function() { readme.should.be.html({ ".page-inner p#t5": { count: 1, |