
This ports over changes made in openstack-health to convert the project from jshint to eslint, with the eslint-config-openstack plugin. Change-Id: Iaa0490d07603e2481e1c738136f9fda1be95dea8
23 lines
361 B
JavaScript
23 lines
361 B
JavaScript
/*global angular */
|
|
|
|
'use strict';
|
|
|
|
describe('Unit: HomeCtrl', function() {
|
|
|
|
var ctrl;
|
|
|
|
beforeEach(function() {
|
|
// instantiate the app module
|
|
angular.mock.module('app');
|
|
|
|
angular.mock.inject(function($controller) {
|
|
ctrl = $controller('HomeCtrl');
|
|
});
|
|
});
|
|
|
|
it('should exist', function() {
|
|
expect(ctrl).toBeDefined();
|
|
});
|
|
|
|
});
|