1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 21:00:23 +02:00
metamask-extension/test/unit/migrations/022-test.js

41 lines
1.3 KiB
JavaScript
Raw Normal View History

import assert from 'assert'
import migration22 from '../../../app/scripts/migrations/022'
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction'
2020-11-03 00:41:28 +01:00
const properTime = new Date().getTime()
const storage = {
2020-11-03 00:41:28 +01:00
meta: {},
data: {
TransactionController: {
transactions: [
{ status: TRANSACTION_STATUSES.SUBMITTED },
{ status: TRANSACTION_STATUSES.SUBMITTED, submittedTime: properTime },
{ status: TRANSACTION_STATUSES.CONFIRMED },
2018-07-03 00:49:33 +02:00
],
},
},
}
describe('storage is migrated successfully where transactions that are submitted have submittedTimes', function () {
it('should add submittedTime key on the txMeta if appropriate', function (done) {
2020-11-03 00:41:28 +01:00
migration22
.migrate(storage)
.then((migratedData) => {
2020-11-03 00:41:28 +01:00
const [
txMeta1,
txMeta2,
txMeta3,
] = migratedData.data.TransactionController.transactions
assert.equal(migratedData.meta.version, 22)
// should have written a submitted time
assert(txMeta1.submittedTime)
// should not have written a submitted time because it already has one
assert.equal(txMeta2.submittedTime, properTime)
// should not have written a submitted time
assert(!txMeta3.submittedTime)
done()
2020-11-03 00:41:28 +01:00
})
.catch(done)
})
})