mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
e78e82205a
* Jestify migrations/ * Lint exclude migrations from mocha config, and add inclusion to jest config * Add migration tests to jest config * Exclude/ignore migration tests * Set process.env.IN_TEST to true when running tests locally
54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
import migration43 from './043';
|
|
|
|
describe('migration #43', () => {
|
|
it('should update the version metadata', async () => {
|
|
const oldStorage = {
|
|
meta: {
|
|
version: 42,
|
|
},
|
|
data: {},
|
|
};
|
|
|
|
const newStorage = await migration43.migrate(oldStorage);
|
|
expect(newStorage.meta).toStrictEqual({
|
|
version: 43,
|
|
});
|
|
});
|
|
|
|
it('should delete currentAccountTab state', async () => {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
PreferencesController: {
|
|
currentAccountTab: 'history',
|
|
bar: 'baz',
|
|
},
|
|
foo: 'bar',
|
|
},
|
|
};
|
|
|
|
const newStorage = await migration43.migrate(oldStorage);
|
|
expect(newStorage.data).toStrictEqual({
|
|
PreferencesController: {
|
|
bar: 'baz',
|
|
},
|
|
foo: 'bar',
|
|
});
|
|
});
|
|
|
|
it('should do nothing if currentAccountTab state does not exist', async () => {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
PreferencesController: {
|
|
bar: 'baz',
|
|
},
|
|
foo: 'bar',
|
|
},
|
|
};
|
|
|
|
const newStorage = await migration43.migrate(oldStorage);
|
|
expect(oldStorage.data).toStrictEqual(newStorage.data);
|
|
});
|
|
});
|