mirror of
https://github.com/openstf/stf
synced 2025-10-04 18:29:17 +02:00
17 lines
No EOL
330 B
JavaScript
17 lines
No EOL
330 B
JavaScript
describe('AdvancedCtrl', function () {
|
|
|
|
beforeEach(module('stf.advanced'));
|
|
|
|
var scope, ctrl;
|
|
|
|
beforeEach(inject(function ($rootScope, $controller) {
|
|
scope = $rootScope.$new();
|
|
ctrl = $controller('AdvancedCtrl', {$scope: scope});
|
|
}));
|
|
|
|
it('should ...', inject(function () {
|
|
expect(1).toEqual(1);
|
|
|
|
}));
|
|
|
|
}); |