1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-19 18:01:29 +00:00
This commit is contained in:
Scott Tolksdorf
2017-01-11 20:17:52 -08:00
parent 4593099914
commit c470bed591
3 changed files with 104 additions and 1 deletions

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);
});
});