[AAE-6150] User info disappears in every click (#7328)

* [AAE-6150] userinfo remove debounce for every reload

* [ci:force] force e2e
This commit is contained in:
Dharan
2021-10-28 18:52:17 +05:30
committed by GitHub
parent 6c4650785c
commit 08b9cd144f
3 changed files with 10 additions and 10 deletions

View File

@@ -27,7 +27,7 @@ import { IdentityUserService } from '../../services/identity-user.service';
import { BpmUserModel } from '../../models/bpm-user.model';
import { EcmUserModel } from '../../models/ecm-user.model';
import { UserInfoComponent } from './user-info.component';
import { of, timer } from 'rxjs';
import { of } from 'rxjs';
import { setupTestBed } from '../../testing/setup-test-bed';
import { CoreTestingModule } from '../../testing/core.testing.module';
import { TranslateModule } from '@ngx-translate/core';
@@ -88,7 +88,7 @@ describe('User info component', () => {
async function whenFixtureReady() {
fixture.detectChanges();
await timer(500).toPromise();
await fixture.whenStable();
fixture.detectChanges();
}