aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/app/controllers/preferences-controller-test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/app/controllers/preferences-controller-test.js')
-rw-r--r--test/unit/app/controllers/preferences-controller-test.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/unit/app/controllers/preferences-controller-test.js b/test/unit/app/controllers/preferences-controller-test.js
index 81b152f3d..7e047a2a8 100644
--- a/test/unit/app/controllers/preferences-controller-test.js
+++ b/test/unit/app/controllers/preferences-controller-test.js
@@ -496,21 +496,6 @@ describe('preferences controller', function () {
})
})
- describe('setSeedWords', function () {
- it('should default to null', function () {
- const state = preferencesController.store.getState()
- assert.equal(state.seedWords, null)
- })
-
- it('should set the seedWords property in state', function () {
- assert.equal(preferencesController.store.getState().seedWords, null)
-
- preferencesController.setSeedWords('foo bar baz')
-
- assert.equal(preferencesController.store.getState().seedWords, 'foo bar baz')
- })
- })
-
describe('#updateRpc', function () {
it('should update the rpcDetails properly', () => {
preferencesController.store.updateState({frequentRpcListDetail: [{}, { rpcUrl: 'test' }, {}]})