mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-16 13:11:33 +00:00
22 lines
451 B
JavaScript
Executable File
22 lines
451 B
JavaScript
Executable File
'use strict';
|
|
|
|
describe('Controller: SidebarCtrl', function () {
|
|
|
|
// load the controller's module
|
|
beforeEach(module('dssWebApp'));
|
|
|
|
var SidebarCtrl, scope;
|
|
|
|
// Initialize the controller and a mock scope
|
|
beforeEach(inject(function ($controller, $rootScope) {
|
|
scope = $rootScope.$new();
|
|
SidebarCtrl = $controller('SidebarCtrl', {
|
|
$scope: scope
|
|
});
|
|
}));
|
|
|
|
it('should ...', function () {
|
|
expect(1).toEqual(1);
|
|
});
|
|
});
|