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:
parent
6638da01a6
commit
325eaaf199
48 changed files with 785 additions and 51 deletions
17
res/app/control-panes/advanced/run-js/run-js-spec.js
Normal file
17
res/app/control-panes/advanced/run-js/run-js-spec.js
Normal 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);
|
||||
|
||||
}));
|
||||
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue