diff options
Diffstat (limited to 'test/helper.js')
-rw-r--r-- | test/helper.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/helper.js b/test/helper.js index f9723b9..74f461a 100644 --- a/test/helper.js +++ b/test/helper.js @@ -17,9 +17,9 @@ before(function(done) { global.book2 = new Book(path.join(__dirname, './fixtures/test2')); qdone( - global.book1.init() + global.book1.parse() .then(function() { - return global.book2.init(); + return global.book2.parse(); }), done ); |