This migrates the existing webapp tests to using Jest and Enzyme. The infrastructure is put in place for React component testing, and a few simple example component tests are implemented. This also adds snapshot testing of components, coverage checking for the webapp (although that is not yet integrated to Coveralls), and the ability to run npm run test:watch to automatically re-run affected tests when working on the webapp codebase.
54 строки
2.3 KiB
JavaScript
54 строки
2.3 KiB
JavaScript
// Copyright (c) 2016 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('').trim(),
|
|
'<p><img src="/images/icon.png" alt="Mattermost" onload="window.markdownImageLoaded(this)" onerror="window.markdownImageLoaded(this)" class="markdown-inline-img"></p>'
|
|
);
|
|
|
|
done();
|
|
});
|
|
|
|
it('Image with hover text', function(done) {
|
|
assert.equal(
|
|
Markdown.format('').trim(),
|
|
'<p><img src="/images/icon.png" alt="Mattermost" title="Mattermost Icon" onload="window.markdownImageLoaded(this)" onerror="window.markdownImageLoaded(this)" class="markdown-inline-img"></p>'
|
|
);
|
|
|
|
done();
|
|
});
|
|
|
|
it('Image with link', function(done) {
|
|
assert.equal(
|
|
Markdown.format('[](https://github.com/mattermost/platform)').trim(),
|
|
'<p><a class="theme markdown__link" href="https://github.com/mattermost/platform" rel="noreferrer" target="_blank"><img src="../../images/icon-76x76.png" alt="Mattermost" onload="window.markdownImageLoaded(this)" onerror="window.markdownImageLoaded(this)" class="markdown-inline-img"></a></p>'
|
|
);
|
|
|
|
done();
|
|
});
|
|
|
|
it('Image with width and height', function(done) {
|
|
assert.equal(
|
|
Markdown.format('').trim(),
|
|
'<p><img src="../../images/icon-76x76.png" alt="Mattermost" title="Mattermost Icon" width="50" height="76" onload="window.markdownImageLoaded(this)" onerror="window.markdownImageLoaded(this)" class="markdown-inline-img"></p>'
|
|
);
|
|
|
|
done();
|
|
});
|
|
|
|
it('Image with width', function(done) {
|
|
assert.equal(
|
|
Markdown.format('').trim(),
|
|
'<p><img src="../../images/icon-76x76.png" alt="Mattermost" title="Mattermost Icon" width="50" onload="window.markdownImageLoaded(this)" onerror="window.markdownImageLoaded(this)" class="markdown-inline-img"></p>'
|
|
);
|
|
|
|
done();
|
|
});
|
|
});
|