This commit is contained in:
Scott Tolksdorf
2017-01-28 16:38:51 -05:00
parent 4593099914
commit c470bed591
3 changed files with 104 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
const testing = require('./test.init.js');
const Markdown = require('../shared/homebrewery/markdown.new.js');
describe('Markdown', ()=>{
it('should do a thing', ()=>{
const res = Markdown.render(`
test
<div> cool stuff </div>
test2
`)
console.log(res);
});
});