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/__tests__/init.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/__tests__/init.js')
-rw-r--r-- | lib/__tests__/init.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/__tests__/init.js b/lib/__tests__/init.js index 5665cf1..66188a3 100644 --- a/lib/__tests__/init.js +++ b/lib/__tests__/init.js @@ -3,7 +3,7 @@ var initBook = require('../init'); describe('initBook', function() { - pit('should create a README and SUMMARY for empty book', function() { + it('should create a README and SUMMARY for empty book', function() { var dir = tmp.dirSync(); return initBook(dir.name) |