diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-03-14 23:23:28 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-03-14 23:23:28 +0100 |
commit | 94485621560152cf197dc8bd603774c46de2f0ef (patch) | |
tree | 189aa8349423187a807dd2c2a4b3639d1a752213 /test/parsing.js | |
parent | 8320484b88f2481dad276b1912831110fdf75bcd (diff) | |
download | gitbook-94485621560152cf197dc8bd603774c46de2f0ef.zip gitbook-94485621560152cf197dc8bd603774c46de2f0ef.tar.gz gitbook-94485621560152cf197dc8bd603774c46de2f0ef.tar.bz2 |
Add editorconfig and normalize indent
Diffstat (limited to 'test/parsing.js')
-rw-r--r-- | test/parsing.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parsing.js b/test/parsing.js index 0f0962e..498de9f 100644 --- a/test/parsing.js +++ b/test/parsing.js @@ -5,7 +5,7 @@ var assert = require('assert'); describe('Book parsing', function () { it('should correctly parse the readme', function() { assert.equal(books[1].options.title, 'My Book'); - assert.equal(books[1].options.description, 'Test description'); + assert.equal(books[1].options.description, 'Test description'); }); it('should correctly parse the readme with asciidoc', function() { @@ -21,7 +21,7 @@ describe('Book parsing', function () { assert.equal(LEXED.chapters[0].introduction, true); assert.equal(LEXED.chapters[0].external, false); - assert.equal(LEXED.chapters[1].path, 'test.md'); + assert.equal(LEXED.chapters[1].path, 'test.md'); assert.equal(LEXED.chapters[1].exists, false); assert.equal(LEXED.chapters[1].introduction, false); assert.equal(LEXED.chapters[1].external, false); |