mirror of
https://github.com/stolksdorf/homebrewery.git
synced 2025-12-15 07:55:57 +00:00
20 lines
285 B
JavaScript
20 lines
285 B
JavaScript
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);
|
|
|
|
|
|
|
|
});
|
|
|
|
}); |