mirror of https://github.com/artf/grapesjs.git
3 changed files with 34 additions and 1 deletions
@ -0,0 +1,30 @@ |
|||
var modulePath = './../../../test/specs/commands'; |
|||
|
|||
define([ |
|||
'Commands'], |
|||
function( |
|||
Commands |
|||
) { |
|||
|
|||
describe('Commands', function() { |
|||
|
|||
describe('Main', function() { |
|||
|
|||
var obj; |
|||
|
|||
beforeEach(function () { |
|||
obj = new Commands(); |
|||
}); |
|||
|
|||
afterEach(function () { |
|||
delete obj; |
|||
}); |
|||
|
|||
it('Object exists', function() { |
|||
obj.should.be.exist; |
|||
}); |
|||
|
|||
}); |
|||
|
|||
}); |
|||
}); |
|||
Loading…
Reference in new issue