diff options
Diffstat (limited to 'lib/output/__tests__/json.js')
-rw-r--r-- | lib/output/__tests__/json.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/output/__tests__/json.js b/lib/output/__tests__/json.js index 94a0362..46ab42f 100644 --- a/lib/output/__tests__/json.js +++ b/lib/output/__tests__/json.js @@ -3,7 +3,7 @@ var JSONGenerator = require('../json'); describe('JSONGenerator', function() { - pit('should generate a README.json', function() { + it('should generate a README.json', function() { return generateMock(JSONGenerator, { 'README.md': 'Hello World' }) @@ -12,7 +12,7 @@ describe('JSONGenerator', function() { }); }); - pit('should generate a json file for each articles', function() { + it('should generate a json file for each articles', function() { return generateMock(JSONGenerator, { 'README.md': 'Hello World', 'SUMMARY.md': '# Summary\n\n* [Page](test/page.md)', |