1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-11 20:27:12 +01:00
metamask-extension/test/unit/migrations/040.test.js
Thomas Huang 3ba91df387
Unifies unit tests filename suffix to .test.js (#10607)
* Unifies the filename suffix to .test.js

* Display @babel/no-invalid-this rule for tx-controller.test.js

* Add test file extension to test:unit:global
2021-03-09 11:08:06 -08:00

57 lines
1.2 KiB
JavaScript

import assert from 'assert';
import migration40 from '../../../app/scripts/migrations/040';
describe('migration #40', function () {
it('should update the version metadata', function (done) {
const oldStorage = {
meta: {
version: 39,
},
data: {},
};
migration40
.migrate(oldStorage)
.then((newStorage) => {
assert.deepEqual(newStorage.meta, {
version: 40,
});
done();
})
.catch(done);
});
it('should delete ProviderApprovalController storage key', function (done) {
const oldStorage = {
meta: {},
data: {
ProviderApprovalController: {},
foo: 'bar',
},
};
migration40
.migrate(oldStorage)
.then((newStorage) => {
assert.deepEqual(newStorage.data, { foo: 'bar' });
done();
})
.catch(done);
});
it('should do nothing if no ProviderApprovalController storage key', function (done) {
const oldStorage = {
meta: {},
data: { foo: 'bar' },
};
migration40
.migrate(oldStorage)
.then((newStorage) => {
assert.deepEqual(newStorage.data, { foo: 'bar' });
done();
})
.catch(done);
});
});