mirror of https://github.com/artf/grapesjs.git
nocodeframeworkdrag-and-dropsite-buildersite-generatortemplate-builderui-builderweb-builderweb-builder-frameworkwebsite-builderno-codepage-builder
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
var path = 'StyleManager/view/';
|
|
define([path + 'SectorsView', 'StyleManager/model/Sectors'],
|
|
function(SectorsView, Sectors) {
|
|
|
|
return {
|
|
run : function(){
|
|
|
|
describe('SectorsView', function() {
|
|
|
|
var $fixtures;
|
|
var $fixture;
|
|
var model;
|
|
var view;
|
|
|
|
before(function () {
|
|
$fixtures = $("#fixtures");
|
|
$fixture = $('<div class="sectors-fixture"></div>');
|
|
});
|
|
|
|
beforeEach(function () {
|
|
model = new Sectors([]);
|
|
view = new SectorsView({
|
|
collection: model
|
|
});
|
|
$fixture.empty().appendTo($fixtures);
|
|
$fixture.html(view.render().el);
|
|
});
|
|
|
|
afterEach(function () {
|
|
view.collection.reset();
|
|
});
|
|
|
|
after(function () {
|
|
$fixture.remove();
|
|
});
|
|
|
|
it("Collection is empty", function (){
|
|
view.el.innerHTML.should.be.empty;
|
|
});
|
|
|
|
it("Add new sectors", function (){
|
|
view.collection.add([{}, {}]);
|
|
view.el.children.length.should.equal(2);
|
|
});
|
|
|
|
});
|
|
}
|
|
};
|
|
|
|
});
|