Skip to content

Commit a545ffa

Browse files
authored
Removing commented conde from account.spec.ts
1 parent 3c31d78 commit a545ffa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/jest/__tests__/stores/account.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ describe('Store - Account Actions', () => {
123123
describe('login()', () => {
124124
test('when no account is provided it should request account', async () => {
125125
const accountStore = useAccountStore();
126-
//const authenticator = newAuthenticatorMock(true);
126+
127127
const authenticator = new MockAuthenticator(null);
128128

129129
const accountStoreLoginSpy = jest.spyOn(accountStore, 'login');
@@ -142,7 +142,6 @@ describe('Store - Account Actions', () => {
142142
expect(mockInit).toHaveBeenCalledTimes(1);
143143

144144
expect(mockShouldRequestAccountName).toHaveBeenCalledTimes(1);
145-
// expect(accountStore.requestAccount).toEqual(true);
146145

147146
});
148147

0 commit comments

Comments
 (0)