Files
fb/app/view1/view1_test.js
2018-05-08 23:33:13 +05:30

16 lines
319 B
JavaScript

'use strict';
describe('myApp.view1 module', function() {
beforeEach(module('myApp.view1'));
describe('view1 controller', function(){
it('should ....', inject(function($controller) {
//spec body
var view1Ctrl = $controller('View1Ctrl');
expect(view1Ctrl).toBeDefined();
}));
});
});