Files
stf-DeviceFarmer/res/app/control-panes/info/info-spec.js
Gunther Brunner 7a598af243 Adding panel info.
2014-05-01 22:42:35 +09:00

17 lines
318 B
JavaScript

describe('InfoCtrl', function () {
beforeEach(module('stf.info'));
var scope, ctrl;
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('InfoCtrl', {$scope: scope});
}));
it('should ...', inject(function () {
expect(1).toEqual(1);
}));
});