mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-18 05:56:01 +00:00
24 lines
487 B
JavaScript
Executable File
24 lines
487 B
JavaScript
Executable File
/*
|
|
'use strict';
|
|
|
|
describe('Controller: UsersCtrl', function () {
|
|
|
|
// load the controller's module
|
|
beforeEach(module('dssWebApp'));
|
|
|
|
var UsersCtrl, scope;
|
|
|
|
// Initialize the controller and a mock scope
|
|
beforeEach(inject(function ($controller, $rootScope) {
|
|
scope = $rootScope.$new();
|
|
UsersCtrl = $controller('UsersCtrl', {
|
|
$scope: scope
|
|
});
|
|
}));
|
|
|
|
it('should ...', function () {
|
|
expect(1).toEqual(1);
|
|
});
|
|
});
|
|
*/
|