diff options
Diffstat (limited to 'test/json.js')
-rw-r--r-- | test/json.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/json.js b/test/json.js index c600ffa..d7f6aac 100644 --- a/test/json.js +++ b/test/json.js @@ -15,7 +15,7 @@ describe('JSON generator', function () { }); it('should correctly generate a book to json with sub folders', function(done) { - testGeneration(books[1], "json", function(output) { + testGeneration(books[1], "json", function(output) { assert(fs.existsSync(path.join(output, "README.json"))); assert(fs.existsSync(path.join(output, "intro.json"))); assert(fs.existsSync(path.join(output, "sub/test1.json"))); @@ -26,7 +26,7 @@ describe('JSON generator', function () { }); it('should correctly generate a multilingual book to json', function(done) { - testGeneration(books[2], "json", function(output) { + testGeneration(books[2], "json", function(output) { assert(fs.existsSync(path.join(output, "README.json"))); assert(fs.existsSync(path.join(output, "en/README.json"))); assert(fs.existsSync(path.join(output, "fr/README.json"))); |