1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/test/unit/migrations/027-test.js
Whymarrh Whitby 4f3fc95d50
Update ESLint rules for test suite (#8023)
* Use @metamask/eslint-config@1.1.0
* Use eslint-plugin-mocha@6.2.2
* Mark root ESLint config as root
* Update Mocha ESLint rules with shared ESLint config
2020-02-11 13:21:13 -03:30

53 lines
1.4 KiB
JavaScript

import assert from 'assert'
import migration27 from '../../../app/scripts/migrations/027'
const oldStorage = {
'meta': {},
'data': {
'TransactionController': {
'transactions': [
],
},
},
}
const transactions = []
while (transactions.length < 9) {
transactions.push({ status: 'rejected' })
transactions.push({ status: 'unapproved' })
transactions.push({ status: '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 === '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: require('../../../app/scripts/first-time-state'),
})
.then((migratedData) => {
assert.equal(migratedData.meta.version, migration27.version)
done()
}).catch(done)
})
})