File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
test/jest/__tests__/stores Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments