You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
4 years ago
|
import { strict as assert } from 'assert';
|
||
4 years ago
|
import migration46 from './046';
|
||
5 years ago
|
|
||
|
describe('migration #46', function () {
|
||
|
it('should update the version metadata', async function () {
|
||
|
const oldStorage = {
|
||
4 years ago
|
meta: {
|
||
|
version: 45,
|
||
5 years ago
|
},
|
||
4 years ago
|
data: {},
|
||
4 years ago
|
};
|
||
5 years ago
|
|
||
4 years ago
|
const newStorage = await migration46.migrate(oldStorage);
|
||
5 years ago
|
assert.deepEqual(newStorage.meta, {
|
||
4 years ago
|
version: 46,
|
||
4 years ago
|
});
|
||
|
});
|
||
5 years ago
|
|
||
|
it('should delete ABTestController state', async function () {
|
||
|
const oldStorage = {
|
||
|
meta: {},
|
||
|
data: {
|
||
|
ABTestController: {
|
||
|
abTests: {
|
||
|
fullScreenVsPopup: 'control',
|
||
|
},
|
||
|
},
|
||
|
foo: 'bar',
|
||
|
},
|
||
4 years ago
|
};
|
||
5 years ago
|
|
||
4 years ago
|
const newStorage = await migration46.migrate(oldStorage);
|
||
5 years ago
|
assert.deepEqual(newStorage.data, {
|
||
|
foo: 'bar',
|
||
4 years ago
|
});
|
||
|
});
|
||
5 years ago
|
|
||
|
it('should do nothing if ABTestController state does not exist', async function () {
|
||
|
const oldStorage = {
|
||
|
meta: {},
|
||
|
data: {
|
||
|
AppStateController: {
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
foo: 'bar',
|
||
|
},
|
||
4 years ago
|
};
|
||
5 years ago
|
|
||
4 years ago
|
const newStorage = await migration46.migrate(oldStorage);
|
||
|
assert.deepEqual(oldStorage.data, newStorage.data);
|
||
|
});
|
||
|
});
|