13 lines
220 B
Plaintext
13 lines
220 B
Plaintext
|
describe('AppView', function() {
|
||
|
var app_view;
|
||
|
|
||
|
beforeEach(function() {
|
||
|
app_view = new AppView();
|
||
|
});
|
||
|
|
||
|
it('should render', function() {
|
||
|
expect($(app_view.render().el)).toContain('.something');
|
||
|
});
|
||
|
});
|
||
|
|