app.component.spec.js 319 B

12345678910111213141516
  1. 'use strict';
  2. describe('myApp.view1 module', function() {
  3. beforeEach(module('myApp.view1'));
  4. describe('view1 controller', function(){
  5. it('should ....', inject(function($controller) {
  6. //spec body
  7. var view1Ctrl = $controller('View1Ctrl');
  8. expect(view1Ctrl).toBeDefined();
  9. }));
  10. });
  11. });