Added Wifi enable/disable setting.

This commit is contained in:
Gunther Brunner
2014-07-25 20:16:19 +09:00
parent b79e10c317
commit 7988927c8d
10 changed files with 71 additions and 19 deletions

View File

@@ -0,0 +1,17 @@
describe('DeviceSettingsCtrl', function () {
beforeEach(module('stf.device-settings'));
var scope, ctrl;
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('DeviceSettingsCtrl', {$scope: scope});
}));
it('should ...', inject(function () {
expect(1).toEqual(1);
}));
});