summaryrefslogtreecommitdiffstats
path: root/test/helper.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/helper.js')
-rw-r--r--test/helper.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/helper.js b/test/helper.js
index 7e53151..341b698 100644
--- a/test/helper.js
+++ b/test/helper.js
@@ -41,7 +41,9 @@ before(function(done) {
.sortBy()
.map(function(book) {
if (book.indexOf("test") !== 0) return null;
- return new Book(path.join(__dirname, './fixtures/', book));;
+ return new Book(path.join(__dirname, './fixtures/', book), {
+ logLevel: Book.LOG_LEVELS.DISABLED
+ });
})
.compact()
.value();