Skip to content

Commit

Permalink
Removing commented conde from account.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Viterbo authored May 10, 2024
1 parent 3c31d78 commit a545ffa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/jest/__tests__/stores/account.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ describe('Store - Account Actions', () => {
describe('login()', () => {
test('when no account is provided it should request account', async () => {
const accountStore = useAccountStore();
//const authenticator = newAuthenticatorMock(true);

const authenticator = new MockAuthenticator(null);

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

expect(mockShouldRequestAccountName).toHaveBeenCalledTimes(1);
// expect(accountStore.requestAccount).toEqual(true);

});

Expand Down

0 comments on commit a545ffa

Please sign in to comment.