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
Thomas Huang e78e82205a
Jestify migrations/ (#12106)
* 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
2021-09-21 09:28:13 -07:00

48 lines
1.3 KiB
JavaScript

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', () => {
it('should remove rejected transactions', async () => {
const newStorage = await migration27.migrate(oldStorage);
const newTransactions = newStorage.data.TransactionController.transactions;
expect(newTransactions).toHaveLength(6);
newTransactions.forEach((txMeta) => {
if (txMeta.status === TRANSACTION_STATUSES.REJECTED) {
throw new Error('transaction was found with a status of rejected');
}
});
});
it('should successfully migrate first time state', async () => {
const migratedData = await migration27.migrate({
meta: {},
data: firstTimeState,
});
expect(migratedData.meta.version).toStrictEqual(migration27.version);
});
});