merty/angular-boilerplate

View on GitHub
src/app/modules/home/home.spec.js

Summary

Maintainability
A
0 mins
Test Coverage
describe('HomeController', function () {
  'use strict';

  beforeEach(module('app'));

  describe('getHeading()', function () {
    it('should get heading message correctly', inject(function ($controller) {
      var homeController = $controller('Home');
      homeController.heading = 'Hello World!';
      homeController.getHeading().should.equal('Hello World!');
    }));
  });
});