Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit cf327fd

Browse files
committed
Remove unused nav actions
1 parent ce33e4c commit cf327fd

File tree

2 files changed

+0
-22
lines changed

2 files changed

+0
-22
lines changed

src/action/nav.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -120,14 +120,6 @@ class NavAction {
120120
this._store.route = 'CreateChannel';
121121
}
122122

123-
goInitializeWallet() {
124-
this._store.route = 'InitializeWallet';
125-
}
126-
127-
goVerifyWallet() {
128-
this._store.route = 'VerifyWallet';
129-
}
130-
131123
goFundWallet() {
132124
this._store.displayCopied = false;
133125
this._store.route = 'FundWallet';

test/unit/action/nav.spec.js

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -213,18 +213,4 @@ describe('Action Nav Unit Tests', () => {
213213
expect(store.route, 'to equal', 'CreateChannel');
214214
});
215215
});
216-
217-
describe('goInitializeWallet()', () => {
218-
it('should set correct route', () => {
219-
nav.goInitializeWallet();
220-
expect(store.route, 'to equal', 'InitializeWallet');
221-
});
222-
});
223-
224-
describe('goVerifyWallet()', () => {
225-
it('should set correct route', () => {
226-
nav.goVerifyWallet();
227-
expect(store.route, 'to equal', 'VerifyWallet');
228-
});
229-
});
230216
});

0 commit comments

Comments
 (0)