mirror of
https://github.com/openstf/stf
synced 2025-10-06 03:50:04 +02:00
Add initial VNC UI.
This commit is contained in:
parent
c4179f5886
commit
dec14899c2
8 changed files with 80 additions and 1 deletions
17
res/app/control-panes/advanced/vnc/vnc-spec.js
Normal file
17
res/app/control-panes/advanced/vnc/vnc-spec.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
describe('VNCCtrl', function () {
|
||||
|
||||
beforeEach(angular.mock.module(require('./').name));
|
||||
|
||||
var scope, ctrl;
|
||||
|
||||
beforeEach(inject(function ($rootScope, $controller) {
|
||||
scope = $rootScope.$new();
|
||||
ctrl = $controller('VNCCtrl', {$scope: scope});
|
||||
}));
|
||||
|
||||
it('should ...', inject(function () {
|
||||
expect(1).toEqual(1);
|
||||
|
||||
}));
|
||||
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue