Create skeleton for new History region in editor
[MAILPOET-1976]
This commit is contained in:
@ -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();
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user