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/027.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

60 lines
1.6 KiB
JavaScript

import { strict as assert } from 'assert';
import firstTimeState from '../first-time-state';
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction';
import migration27 from './027';
const oldStorage = {
meta: {},
data: {
TransactionController: {
transactions: [],
},
},
};
const transactions = [];
while (transactions.length < 9) {
transactions.push({ status: TRANSACTION_STATUSES.REJECTED });
transactions.push({ status: TRANSACTION_STATUSES.UNAPPROVED });
transactions.push({ status: TRANSACTION_STATUSES.APPROVED });
}
oldStorage.data.TransactionController.transactions = transactions;
describe('migration #27', function () {
it('should remove rejected transactions', function (done) {
migration27
.migrate(oldStorage)
.then((newStorage) => {
const newTransactions =
newStorage.data.TransactionController.transactions;
assert.equal(
newTransactions.length,
6,
'transactions is expected to have the length of 6',
);
newTransactions.forEach((txMeta) => {
if (txMeta.status === TRANSACTION_STATUSES.REJECTED) {
done(new Error('transaction was found with a status of rejected'));
}
});
done();
})
.catch(done);
});
it('should successfully migrate first time state', function (done) {
migration27
.migrate({
meta: {},
data: firstTimeState,
})
.then((migratedData) => {
assert.equal(migratedData.meta.version, migration27.version);
done();
})
.catch(done);
});
});