summaryrefslogtreecommitdiffstats
path: root/test/format.js
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2016-02-26 09:41:26 +0100
committerSamy Pessé <samypesse@gmail.com>2016-02-26 09:41:26 +0100
commitd3d64f636c859f7f01a64f7774cf70bd8ccdc562 (patch)
tree4f7731f37c3a793d187b0ab1cd77680e69534c6c /test/format.js
parent4cb9cbb5ae3aa8f9211ffa3ac5e3d34232c0ca4f (diff)
parenteef072693b17526347c37b66078a5059c71caa31 (diff)
downloadgitbook-d3d64f636c859f7f01a64f7774cf70bd8ccdc562.zip
gitbook-d3d64f636c859f7f01a64f7774cf70bd8ccdc562.tar.gz
gitbook-d3d64f636c859f7f01a64f7774cf70bd8ccdc562.tar.bz2
Merge pull request #1109 from GitbookIO/3.0.0
Version 3.0.0
Diffstat (limited to 'test/format.js')
-rw-r--r--test/format.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/format.js b/test/format.js
deleted file mode 100644
index 2ec1a6f..0000000
--- a/test/format.js
+++ /dev/null
@@ -1,11 +0,0 @@
-describe('Formatting', function () {
- it('should provide formatting with book.formatString', function() {
- return books.parse('basic')
- .then(function(book) {
- return book.formatString('markdown', 'this is a **test**');
- })
- .then(function(content) {
- content.should.equal('<p>this is a <strong>test</strong></p>\n');
- });
- });
-});