[ACS-8398] unit tests part 3 (#4163)

* ACS-8398 Unit tests for search ai effects

* ACS-8398 Unit tests for canDisplayKnowledgeRetrievalButton rule

* ACS-8398 Unit tests for changes in document base page

* ACS-8398 Added unit tests for changes in recent files component

* ACS-8398 Unit tests for changes in lists pages

* ACS-8398 Moved variable to inside of describe

* ACS-8398 Moved repeated code to function

* ACS-8398 Reverted one change

* ACS-8398 Fix after rebase

* ACS-8398 Fix issue with repeated code

* ACS-8398 Fix issue with repeated code

* ACS-8398 Fixed unit tests

* ACS-8398 Fixed unit tests

* ACS-8398 Trigger job
This commit is contained in:
AleksanderSklorz
2024-10-07 13:50:01 +02:00
committed by GitHub
parent 3ec6d0be32
commit 0fb9f9ebe3
9 changed files with 325 additions and 39 deletions

View File

@@ -31,8 +31,9 @@ import { By } from '@angular/platform-browser';
import { SharedLinkPaging } from '@alfresco/js-api';
import { AppService } from '@alfresco/aca-shared';
import { getTitleElementText } from '../../testing/test-utils';
import { ActivatedRoute, Router } from '@angular/router';
import { ActivatedRoute, NavigationStart, Router } from '@angular/router';
import { MatSnackBarModule } from '@angular/material/snack-bar';
import { testHeader } from '../../testing/document-base-page-utils';
describe('SharedFilesComponent', () => {
let fixture: ComponentFixture<SharedFilesComponent>;
@@ -40,7 +41,8 @@ describe('SharedFilesComponent', () => {
let component: SharedFilesComponent;
const routerMock = {
routerState: { root: '' },
url: 'shared-files'
url: 'shared-files',
events: new Subject<NavigationStart>()
};
const route = {
snapshot: {
@@ -104,4 +106,6 @@ describe('SharedFilesComponent', () => {
const pagination = fixture.debugElement.query(By.css('.adf-pagination'));
expect(pagination).toBeNull();
});
testHeader(SharedFilesComponent);
});