mirror of
https://github.com/stolksdorf/homebrewery.git
synced 2025-12-27 19:01:28 +00:00
20 lines
281 B
JavaScript
20 lines
281 B
JavaScript
const testing = require('./test.init.js');
|
|
|
|
const Markdown = require('../shared/homebrewery/markdown.js');
|
|
|
|
describe('Markdown', ()=>{
|
|
|
|
it('should do a thing', ()=>{
|
|
|
|
const res = Markdown.render(`
|
|
test
|
|
<div> cool stuff </div>
|
|
test2
|
|
`)
|
|
console.log(res);
|
|
|
|
|
|
|
|
});
|
|
|
|
}); |