mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +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
43 lines
993 B
JavaScript
43 lines
993 B
JavaScript
import migration40 from './040';
|
|
|
|
describe('migration #40', () => {
|
|
it('should update the version metadata', async () => {
|
|
const oldStorage = {
|
|
meta: {
|
|
version: 39,
|
|
},
|
|
data: {},
|
|
};
|
|
|
|
const newStorage = await migration40.migrate(oldStorage);
|
|
expect(newStorage.meta?.version).toStrictEqual(40);
|
|
});
|
|
|
|
it('should delete ProviderApprovalController storage key', async () => {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
ProviderApprovalController: {},
|
|
foo: 'bar',
|
|
},
|
|
};
|
|
|
|
const newStorage = await migration40.migrate(oldStorage);
|
|
expect(newStorage.data).toStrictEqual({
|
|
foo: 'bar',
|
|
});
|
|
});
|
|
|
|
it('should do nothing if no ProviderApprovalController storage key', async () => {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: { foo: 'bar' },
|
|
};
|
|
|
|
const newStorage = await migration40.migrate(oldStorage);
|
|
expect(newStorage.data).toStrictEqual({
|
|
foo: 'bar',
|
|
});
|
|
});
|
|
});
|