summaryrefslogtreecommitdiffstats
path: root/test/helper.js
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2015-03-14 23:23:28 +0100
committerSamy Pessé <samypesse@gmail.com>2015-03-14 23:23:28 +0100
commit94485621560152cf197dc8bd603774c46de2f0ef (patch)
tree189aa8349423187a807dd2c2a4b3639d1a752213 /test/helper.js
parent8320484b88f2481dad276b1912831110fdf75bcd (diff)
downloadgitbook-94485621560152cf197dc8bd603774c46de2f0ef.zip
gitbook-94485621560152cf197dc8bd603774c46de2f0ef.tar.gz
gitbook-94485621560152cf197dc8bd603774c46de2f0ef.tar.bz2
Add editorconfig and normalize indent
Diffstat (limited to 'test/helper.js')
-rw-r--r--test/helper.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/helper.js b/test/helper.js
index 5e16bc0..528d491 100644
--- a/test/helper.js
+++ b/test/helper.js
@@ -49,7 +49,7 @@ global.books = _.chain(books)
before(function(done) {
qdone(
- _.reduce(global.books, function(prev, book) {
+ _.reduce(global.books, function(prev, book) {
return prev.then(function() {
return fsUtil.remove(path.join(book.root, "_book"));
})
@@ -57,6 +57,6 @@ before(function(done) {
return book.parse();
});
}, Q()),
- done
- );
+ done
+ );
});