21 lines
727 B
TypeScript
21 lines
727 B
TypeScript
describe('Modifying settings', () => {
|
|
it('Modifying sync settings to contain long list', async () => {
|
|
const newSettings = {
|
|
enabledFor: [] as string[],
|
|
disabledFor: [] as string[],
|
|
syncSettings: true,
|
|
};
|
|
|
|
// Cumulative length should be over the browser limit on record size
|
|
for (let i = 0; i < 1000; i ++) {
|
|
newSettings.disabledFor.push(`example${i}.com`);
|
|
}
|
|
|
|
await backgroundUtils.changeSettings(newSettings);
|
|
|
|
const extensionData = await backgroundUtils.collectData();
|
|
expect(extensionData.settings.syncSettings).toBe(true);
|
|
expect(extensionData.settings.disabledFor.length).toBe(1000);
|
|
});
|
|
});
|