mirror of
https://github.com/openstf/stf
synced 2025-10-03 17:59:28 +02:00
17 lines
No EOL
322 B
JavaScript
17 lines
No EOL
322 B
JavaScript
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);
|
|
|
|
}));
|
|
|
|
}); |