From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- webapp/tests/utils/formatting_imgs.test.jsx | 53 ----------------------------- 1 file changed, 53 deletions(-) delete mode 100644 webapp/tests/utils/formatting_imgs.test.jsx (limited to 'webapp/tests/utils/formatting_imgs.test.jsx') diff --git a/webapp/tests/utils/formatting_imgs.test.jsx b/webapp/tests/utils/formatting_imgs.test.jsx deleted file mode 100644 index 3e19a1e06..000000000 --- a/webapp/tests/utils/formatting_imgs.test.jsx +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import assert from 'assert'; - -import * as Markdown from 'utils/markdown.jsx'; - -describe('Markdown.Imgs', function() { - it('Inline mage', function(done) { - assert.equal( - Markdown.format('![Mattermost](/images/icon.png)').trim(), - '

Mattermost

' - ); - - done(); - }); - - it('Image with hover text', function(done) { - assert.equal( - Markdown.format('![Mattermost](/images/icon.png "Mattermost Icon")').trim(), - '

Mattermost

' - ); - - done(); - }); - - it('Image with link', function(done) { - assert.equal( - Markdown.format('[![Mattermost](../../images/icon-76x76.png)](https://github.com/mattermost/platform)').trim(), - '

Mattermost

' - ); - - done(); - }); - - it('Image with width and height', function(done) { - assert.equal( - Markdown.format('![Mattermost](../../images/icon-76x76.png =50x76 "Mattermost Icon")').trim(), - '

Mattermost

' - ); - - done(); - }); - - it('Image with width', function(done) { - assert.equal( - Markdown.format('![Mattermost](../../images/icon-76x76.png =50 "Mattermost Icon")').trim(), - '

Mattermost

' - ); - - done(); - }); -}); -- cgit v1.2.3-1-g7c22