diff options
Diffstat (limited to 'test/parse.js')
-rw-r--r-- | test/parse.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parse.js b/test/parse.js index e190107..63565ee 100644 --- a/test/parse.js +++ b/test/parse.js @@ -1,12 +1,12 @@ var mock = require('./mock'); describe('Parsing', function() { - it('should fail without SUMMARY', function() { + it('should not fail without SUMMARY', function() { return mock.setupBook({ 'README.md': '' }) .then(function(book) { - return book.parse().should.be.rejected; + return book.parse().should.be.fulfilled(); }); }); |