settings: remove unstable apps key

it's not used anymore
This commit is contained in:
Girish Ramakrishnan
2023-08-02 19:28:14 +05:30
parent c7f2a04e8c
commit 77e6b69a63
6 changed files with 1 additions and 72 deletions
-13
View File
@@ -72,18 +72,6 @@ describe('Settings', function () {
await settings.setBackupPolicy({ schedule: '00 00 2,23 * * 0,1,2', retention: { keepWithinSecs: 1 }});
});
it('can get default unstable apps setting', async function () {
const enabled = await settings.getUnstableAppsConfig();
expect(enabled).to.be(true);
});
it('can set unstable apps setting', async function () {
await settings.setUnstableAppsConfig(false);
const enabled = await settings.getUnstableAppsConfig();
expect(enabled).to.be(false);
});
it('can get default IPv6 setting', async function () {
const config = await settings.getIPv6Config();
expect(config.provider).to.be('noop');
@@ -117,7 +105,6 @@ describe('Settings', function () {
expect(allSettings[settings.TIME_ZONE_KEY]).to.be.a('string');
expect(allSettings[settings.AUTOUPDATE_PATTERN_KEY]).to.be.a('string');
expect(allSettings[settings.CLOUDRON_NAME_KEY]).to.be.a('string');
expect(allSettings[settings.UNSTABLE_APPS_KEY]).to.be.a('boolean');
expect(allSettings[settings.IPV6_CONFIG_KEY]).to.be.an('object');
});
});