diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-01-31 17:01:50 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-01-31 17:01:50 +0100 |
commit | a24aa79dbf5be625ec3fdac50aca955c0b478fec (patch) | |
tree | c2f9c15ae7c703d8bb1e100198108369bafb7174 /test/output-json.js | |
parent | 633de85180b1c968edc3e884821c3de668d23506 (diff) | |
download | gitbook-a24aa79dbf5be625ec3fdac50aca955c0b478fec.zip gitbook-a24aa79dbf5be625ec3fdac50aca955c0b478fec.tar.gz gitbook-a24aa79dbf5be625ec3fdac50aca955c0b478fec.tar.bz2 |
Add base for templating
Diffstat (limited to 'test/output-json.js')
-rw-r--r-- | test/output-json.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/output-json.js b/test/output-json.js index 8d276c6..9e70771 100644 --- a/test/output-json.js +++ b/test/output-json.js @@ -1,6 +1,8 @@ var mock = require('./mock'); describe('JSON Output', function() { - + it('should correctly generate a default book', function() { + return mock.outputDefaultBook('json'); + }); }); |