UNPKG

quickbuild

Version:

A mature, feature-complete application generator with an emphasis on speed

16 lines (11 loc) 319 B
'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(); })); }); });