summaryrefslogtreecommitdiffstats
path: root/lib/parse/__tests__/parseGlossary.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parse/__tests__/parseGlossary.js')
-rw-r--r--lib/parse/__tests__/parseGlossary.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/parse/__tests__/parseGlossary.js b/lib/parse/__tests__/parseGlossary.js
index 53805fe..9069af6 100644
--- a/lib/parse/__tests__/parseGlossary.js
+++ b/lib/parse/__tests__/parseGlossary.js
@@ -4,7 +4,7 @@ var createMockFS = require('../../fs/mock');
describe('parseGlossary', function() {
var parseGlossary = require('../parseGlossary');
- pit('should parse glossary if exists', function() {
+ it('should parse glossary if exists', function() {
var fs = createMockFS({
'GLOSSARY.md': '# Glossary\n\n## Hello\nDescription for hello'
});
@@ -21,7 +21,7 @@ describe('parseGlossary', 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);