Create skeleton for new History region in editor

[MAILPOET-1976]
This commit is contained in:
Ján Mikláš
2019-05-28 12:46:05 +02:00
committed by M. Shull
parent 243dcb9889
commit 7492b20bc4
11 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import HistoryComponent from 'newsletter_editor/components/history';
const expect = global.expect;
describe('History', function () {
describe('view', function () {
var view;
beforeEach(function () {
view = new (HistoryComponent.HistoryView)();
});
it('renders', function () {
expect(view.render).to.not.throw();
});
});
});