1
0
Fork 0
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:
Gunther Brunner 2015-10-13 17:29:04 +09:00
parent c4179f5886
commit dec14899c2
8 changed files with 80 additions and 1 deletions

View 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);
}));
});