You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

32 lines
401 B
JavaScript

'use strict';
/* jasmine specs for controllers go here */
describe('MyCtrl1', function(){
var myCtrl1;
beforeEach(function(){
myCtrl1 = new MyCtrl1();
});
it('should ....', function() {
//spec body
});
});
describe('MyCtrl2', function(){
var myCtrl2;
beforeEach(function(){
myCtrl2 = new MyCtrl2();
});
it('should ....', function() {
//spec body
});
});