aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorKevin Serrano <kevin.serrano@consensys.net>2017-03-25 05:13:57 +0800
committerKevin Serrano <kevin.serrano@consensys.net>2017-03-25 05:13:57 +0800
commit30e8d250138bef588d25619b9fc9563dbbb8ecac (patch)
tree563330742d202a9aa8fccc2b7234c6e259f8ea90 /test/unit
parent2e446eb5880396716d919e10e97a7ab824cc0fc1 (diff)
parentfb39539214ca888300eb192e0e137a512cc0d88a (diff)
downloadtangerine-wallet-browser-30e8d250138bef588d25619b9fc9563dbbb8ecac.tar.gz
tangerine-wallet-browser-30e8d250138bef588d25619b9fc9563dbbb8ecac.tar.zst
tangerine-wallet-browser-30e8d250138bef588d25619b9fc9563dbbb8ecac.zip
Merge branch 'master' into i1210-txdisappearance
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/migrations-test.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit/migrations-test.js b/test/unit/migrations-test.js
index d2a83be77..ccd1477b0 100644
--- a/test/unit/migrations-test.js
+++ b/test/unit/migrations-test.js
@@ -15,6 +15,8 @@ const migration8 = require(path.join('..', '..', 'app', 'scripts', 'migrations',
const migration9 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '009'))
const migration10 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '010'))
const migration11 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '011'))
+const migration12 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '012'))
+
const oldTestRpc = 'https://rawtestrpc.metamask.io/'
const newTestRpc = 'https://testrpc.metamask.io/'
@@ -91,6 +93,11 @@ describe('wallet1 is migrated successfully', () => {
}).then((eleventhResult) => {
assert.equal(eleventhResult.data.isDisclaimerConfirmed, null, 'isDisclaimerConfirmed should not exist')
assert.equal(eleventhResult.data.TOSHash, null, 'TOSHash should not exist')
+
+ return migration12.migrate(eleventhResult)
+ }).then((twelfthResult) => {
+ assert.equal(twelfthResult.data.NoticeController.noticesList[0].body, '', 'notices that have been read should have an empty body.')
+ assert.equal(twelfthResult.data.NoticeController.noticesList[1].body, 'nonempty', 'notices that have not been read should not have an empty body.')
})
})