settings: remove unstable apps key
it's not used anymore
This commit is contained in:
@@ -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');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user