Phillip Stafford
Phillip Stafford
Looks like this one produced the error a minute or two after it reported success: ``` it('should perform an external redirect to domain if userDetails is something and rolename is...
I also noticed, I get intermittent failures on this test: ``` it('call the store cookies on a OnWidget response success', fakeAsync (() => { console.info('test', 8); spyOn(authService, 'resetPasswordAttempts').and.callFake(() => {...
Actually, I am not sure if this library can even be mocked any more. I've tried using both { provide: OktaAuth, useValue: CONFIG.mockedOktaClient }, { provide: OktaAuth, useClass: CONFIG.mockedOktaStub },...
@aakashyadav-okta I don't get the XHR error any more after ensuring I callFake() on every function call for each test. However, I am still experiencing this quite repeatedly: ERROR: AuthSdkError:...
I tried doing a quick upgrade to 4.6 and it blew a ton of my tests away. I think I'll stick with working on 4.5 for now since I am...
@aaronbrodersen-okta As of version 3.x, was autoRenew defaulted to true? or false? I also set autoRenew: false in the config and I still get this error: ``` ERROR: AuthSdkError: OAuth...
@aaronbrodersen-okta Thanks. I have been doing the spy callFake for each test that includes a call to authClient.token.getWithoutPrompt. I am still progressing through it...
@aaronbrodersen-okta Noticed a few of the tests had leaks that were calling authClient.token.getWithoutPrompt and were not being spied upon with a callFake return. After plugging those leaks, I've seen the...
I've noticed an additional issue in attempting to Spy on all functions in the specs. I have noticed issues with callFake on closeSession() calls. In my beforeEach segment, I have...