Free and Open source Web Builder Framework. Next generation tool for building templates without coding
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.
 
 
 
 

39 lines
693 B

var modulePath = './../../../test/specs/code_manager';
define([
'CodeManager',
modulePath + '/model/CodeModels',
//modulePath + '/view/ClassTagView',
//modulePath + '/view/ClassTagsView',
//modulePath + '/e2e/ClassManager'
],
function(
CodeManager,
Models
) {
describe('Code Manager', function() {
describe('Main', function() {
beforeEach(function () {
this.obj = new CodeManager();
});
afterEach(function () {
delete this.obj;
});
it('Object exists', function() {
CodeManager.should.be.exist;
});
});
Models.run();
//ClassTagView.run();
//ClassTagsView.run();
//e2e.run();
});
});