summaryrefslogtreecommitdiffstats
path: root/lib/parse/__tests__/parseSummary.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parse/__tests__/parseSummary.js')
-rw-r--r--lib/parse/__tests__/parseSummary.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/parse/__tests__/parseSummary.js b/lib/parse/__tests__/parseSummary.js
index 4b4650d..55a445e 100644
--- a/lib/parse/__tests__/parseSummary.js
+++ b/lib/parse/__tests__/parseSummary.js
@@ -4,7 +4,7 @@ var createMockFS = require('../../fs/mock');
describe('parseSummary', function() {
var parseSummary = require('../parseSummary');
- pit('should parse summary if exists', function() {
+ it('should parse summary if exists', function() {
var fs = createMockFS({
'SUMMARY.md': '# Summary\n\n* [Hello](hello.md)'
});
@@ -19,7 +19,7 @@ describe('parseSummary', function() {
});
});
- pit('should not fail if doesn\'t exist', function() {
+ it('should not fail if doesn\'t exist', function() {
var fs = createMockFS({});
var book = Book.createForFS(fs);