1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/app/scripts/migrations/030.test.js
Mark Stacey f47cfbbb3e
Use strict assertion mode everywhere (#11012)
The `assert` module has two modes: "Legacy" and "strict". When using
strict mode, the "strict" version of each assertion method is implied.
Whereas in legacy mode, by default it will use the deprecated, "loose"
version of each assertion.

We now use strict mode everywhere. A few tests required updates where
they were asserting the wrong thing, and it was passing beforehand due
to the loose matching.
2021-05-07 17:08:24 -02:30

62 lines
1.5 KiB
JavaScript

import { strict as assert } from 'assert';
import migrationTemplate from './030';
const storage = {
meta: {},
data: {
NetworkController: {
network: 'fail',
provider: {
chainId: 'fail',
nickname: '',
rpcTarget: 'https://api.myetherwallet.com/eth',
ticker: 'ETH',
type: 'rinkeby',
},
},
PreferencesController: {
frequentRpcListDetail: [
{
chainId: 'fail',
nickname: '',
rpcUrl: 'http://127.0.0.1:8545',
ticker: '',
},
{
chainId: '1',
nickname: '',
rpcUrl: 'https://api.myetherwallet.com/eth',
ticker: 'ETH',
},
],
},
},
};
describe('storage is migrated successfully', function () {
it('should work', function (done) {
migrationTemplate
.migrate(storage)
.then((migratedData) => {
assert.equal(migratedData.meta.version, 30);
assert.equal(
migratedData.data.PreferencesController.frequentRpcListDetail[0]
.chainId,
undefined,
);
assert.equal(
migratedData.data.PreferencesController.frequentRpcListDetail[1]
.chainId,
'1',
);
assert.equal(
migratedData.data.NetworkController.provider.chainId,
undefined,
);
assert.equal(migratedData.data.NetworkController.network, undefined);
done();
})
.catch(done);
});
});