diff --git a/frontend/test/Metamaps.Util.spec.js b/frontend/test/Metamaps.Util.spec.js index e0366bd9..db0ab73a 100644 --- a/frontend/test/Metamaps.Util.spec.js +++ b/frontend/test/Metamaps.Util.spec.js @@ -113,11 +113,16 @@ describe('Metamaps.Util.js', function() { expect(Util.mdToHTML(md).trim()).to.equal(html) }) - it('links and images', function() { - const md = '[Link](https://metamaps.cc) ' - const html = '
' + it('links', function() { + const md = '[Link](https://metamaps.cc)' + const html = '' expect(Util.mdToHTML(md).trim()).to.equal(html) }) + + it('images are not rendered', function() { + const md = '' + const html = '
' + expect(Util.mdToHTML(md).trim()).to.equal(html) }) describe('logCanvasAttributes', function() { it.skip('TODO need a canvas')