Files
stf-DeviceFarmer/res/app/control-panes/shell/shell-spec.js
Gunther Brunner 7e4f9bd0cd - Shell module created.
- Device table now almost works.
2014-03-19 19:36:58 +09:00

17 lines
321 B
JavaScript

describe('ShellCtrl', function () {
beforeEach(module('stf.shell'));
var scope, ctrl;
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('ShellCtrl', {$scope: scope});
}));
it('should ...', inject(function () {
expect(1).toEqual(1);
}));
});