17 lines
272 B
JavaScript
17 lines
272 B
JavaScript
'use strict';
|
|
|
|
/* jasmine specs for controllers go here */
|
|
|
|
describe('controllers', function(){
|
|
beforeEach(module('myApp.controllers'));
|
|
|
|
|
|
it('should ....', inject(function() {
|
|
//spec body
|
|
}));
|
|
|
|
it('should ....', inject(function() {
|
|
//spec body
|
|
}));
|
|
});
|