1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 02:09:32 +02:00

- Hundreds of UI coming back.

This commit is contained in:
Gunther Brunner 2014-03-28 21:32:41 +09:00
parent 6638da01a6
commit 325eaaf199
48 changed files with 785 additions and 51 deletions

View file

@ -0,0 +1,17 @@
describe('RunJsCtrl', function () {
beforeEach(module('stf.run-js'));
var scope, ctrl;
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('RunJsCtrl', {$scope: scope});
}));
it('should ...', inject(function () {
expect(1).toEqual(1);
}));
});