summaryrefslogtreecommitdiffstats
path: root/lib/parse/__tests__/parseReadme.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parse/__tests__/parseReadme.js')
-rw-r--r--lib/parse/__tests__/parseReadme.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/parse/__tests__/parseReadme.js b/lib/parse/__tests__/parseReadme.js
index 1b1567b..4270ea3 100644
--- a/lib/parse/__tests__/parseReadme.js
+++ b/lib/parse/__tests__/parseReadme.js
@@ -5,7 +5,7 @@ var createMockFS = require('../../fs/mock');
describe('parseReadme', function() {
var parseReadme = require('../parseReadme');
- pit('should parse summary if exists', function() {
+ it('should parse summary if exists', function() {
var fs = createMockFS({
'README.md': '# Hello\n\nAnd here is the description.'
});
@@ -22,7 +22,7 @@ describe('parseReadme', function() {
});
});
- pit('should fail if doesn\'t exist', function() {
+ it('should fail if doesn\'t exist', function() {
var fs = createMockFS({});
var book = Book.createForFS(fs);