Add Performance tab.

This commit is contained in:
Gunther Brunner
2014-10-06 19:11:46 +09:00
parent 1bedbad650
commit 1a8a5ff8ff
7 changed files with 57 additions and 18 deletions

View File

@@ -0,0 +1,17 @@
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)
}))
})