diff --git a/lib/content-services/src/lib/document-list/components/document-list.component.spec.ts b/lib/content-services/src/lib/document-list/components/document-list.component.spec.ts index 60b2fee80a..43847c0931 100644 --- a/lib/content-services/src/lib/document-list/components/document-list.component.spec.ts +++ b/lib/content-services/src/lib/document-list/components/document-list.component.spec.ts @@ -1431,7 +1431,7 @@ describe('DocumentList', () => { expect(documentList.reload).toHaveBeenCalled(); }); - it('should not show loading state if pagination is updated with merge setting as true', fakeAsync(() => { + it('should not show loading state if pagination is updated with merge setting as true', () => { spyFolderNode = spyOn(documentListService, 'loadFolderByNodeId').and.callFake(() => of( new DocumentLoaderNode(null, { @@ -1456,7 +1456,7 @@ describe('DocumentList', () => { fixture.detectChanges(); expect(element.querySelector('#adf-document-list-loading')).toBe(null); - })); + }); it('should NOT reload data on first call of ngOnChanges', () => { spyOn(documentList, 'reload').and.stub(); diff --git a/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.html b/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.html index 0e59ab521a..658ebce41c 100644 --- a/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.html +++ b/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.html @@ -1,5 +1,6 @@