1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-06 03:50:04 +02:00
OpenSTF/res/app/control-panes/performance/performance-spec.js
2014-10-06 19:11:46 +09:00

17 lines
351 B
JavaScript

describe('PerformanceCtrl', function () {
beforeEach(angular.mock.module(require('./index').name))
var scope, ctrl
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new()
ctrl = $controller('PerformanceCtrl', {$scope: scope})
}))
it('should ...', inject(function () {
expect(1).toEqual(1)
}))
})