
Adds boilerplate files from `angularjs-gulp-browserify-boilerplate` to start work on Angular rewrite of the frontend. Change-Id: I54392c24f397496582f9d06d561d5c14a92ccbe6
30 lines
648 B
JavaScript
30 lines
648 B
JavaScript
/*global angular */
|
|
|
|
'use strict';
|
|
|
|
describe('Unit: ExampleCtrl', function() {
|
|
|
|
var ctrl;
|
|
|
|
beforeEach(function() {
|
|
// instantiate the app module
|
|
angular.mock.module('app');
|
|
|
|
angular.mock.inject(function($controller) {
|
|
ctrl = $controller('ExampleCtrl');
|
|
});
|
|
});
|
|
|
|
it('should exist', function() {
|
|
expect(ctrl).toBeDefined();
|
|
});
|
|
|
|
it('should have a number variable equal to 1234', function() {
|
|
expect(ctrl.number).toEqual(1234);
|
|
});
|
|
|
|
it('should have a title variable equal to \'AngularJS, Gulp, and Browserify!\'', function() {
|
|
expect(ctrl.title).toEqual('AngularJS, Gulp, and Browserify!');
|
|
});
|
|
|
|
}); |