/** * Created by Estevao on 15-01-2015. */ //let showdown = require('../../.build/showdown.js') || require('showdown'); chai.should(); describe('showdown.Converter', function () { 'use strict'; describe('makeMarkdown()', function () { let converter = new showdown.Converter(); it('should parse a simple html string', function () { let html = 'a link\n'; let md = '[a link]()'; converter.makeMarkdown(html).should.equal(md); }); }); });