diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-05-11 13:02:20 +0200 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-05-11 13:02:24 +0200 |
commit | ef589a6b133ac67a7904f8bb2cbec42c96dec914 (patch) | |
tree | d505c567cd80b0681bbf5f7b46b2a25ed591e28a /lib/parse/__tests__/parseGlossary.js | |
parent | d5c4af337795ca5c3d4e6f516aeaef15d51c4e8c (diff) | |
download | gitbook-ef589a6b133ac67a7904f8bb2cbec42c96dec914.zip gitbook-ef589a6b133ac67a7904f8bb2cbec42c96dec914.tar.gz gitbook-ef589a6b133ac67a7904f8bb2cbec42c96dec914.tar.bz2 |
Switch tests to mocha while keeping jest structure
Diffstat (limited to 'lib/parse/__tests__/parseGlossary.js')
-rw-r--r-- | lib/parse/__tests__/parseGlossary.js | 4 |
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); |