okigan/angular-sensible-seed

View on GitHub
app/features/feature1/feature1_test.js

Summary

Maintainability
A
2 hrs
Test Coverage
'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('Feature1Ctrl');
      expect(view1Ctrl).toBeDefined();
    }));

  });
});