From fba17d77de9e60de0e02e90dc6dbcbbf7454158a Mon Sep 17 00:00:00 2001 From: Alexander Tseung Date: Wed, 23 Jan 2019 07:25:34 -0800 Subject: Refactor first time flow, remove seed phrase from state (#5994) * Refactor and fix styling for first time flow. Remove seed phrase from persisted metamask state * Fix linting and tests * Fix translations, initialization notice routing * Fix drizzle tests * Fix e2e tests * Fix integration tests * Fix styling * Fix migration naming from 030 to 031 * Open extension in browser when user has not completed onboarding --- test/unit/ui/app/actions.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/unit/ui/app') diff --git a/test/unit/ui/app/actions.spec.js b/test/unit/ui/app/actions.spec.js index c7ac8b6cf..8d7de8b02 100644 --- a/test/unit/ui/app/actions.spec.js +++ b/test/unit/ui/app/actions.spec.js @@ -198,7 +198,7 @@ describe('Actions', () => { createNewVaultAndRestoreSpy = sinon.spy(background, 'createNewVaultAndRestore') clearSeedWordCacheSpy = sinon.spy(background, 'clearSeedWordCache') return store.dispatch(actions.createNewVaultAndRestore()) - .then(() => { + .catch(() => { assert(clearSeedWordCacheSpy.calledOnce) assert(createNewVaultAndRestoreSpy.calledOnce) }) @@ -218,7 +218,7 @@ describe('Actions', () => { }) return store.dispatch(actions.createNewVaultAndRestore()) - .then(() => { + .catch(() => { assert.deepEqual(store.getActions(), expectedActions) }) }) @@ -240,7 +240,7 @@ describe('Actions', () => { }) return store.dispatch(actions.createNewVaultAndRestore()) - .then(() => { + .catch(() => { assert.deepEqual(store.getActions(), expectedActions) }) }) -- cgit