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