Files
stf-DeviceFarmer/res/app/control-panes/performance/performance-spec.js
2016-01-19 23:08:33 +09:00

18 lines
348 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)
}))
})