|
1 | 1 | import { NO_ERRORS_SCHEMA } from '@angular/core'; |
2 | | -import { ComponentFixture, fakeAsync, TestBed, waitForAsync, } from '@angular/core/testing'; |
| 2 | +import { |
| 3 | + ComponentFixture, |
| 4 | + fakeAsync, |
| 5 | + TestBed, |
| 6 | + waitForAsync, |
| 7 | +} from '@angular/core/testing'; |
3 | 8 | import { By } from '@angular/platform-browser'; |
4 | 9 | import { RouterTestingModule } from '@angular/router/testing'; |
5 | 10 | import { TranslateModule } from '@ngx-translate/core'; |
| 11 | +import { createPaginatedList } from '@shared/testing/utils.test'; |
6 | 12 | import { of } from 'rxjs'; |
7 | 13 |
|
8 | | -import { AuditDataService, AuditDetails } from '../../core/audit/audit-data.service'; |
| 14 | +import { |
| 15 | + AuditDataService, |
| 16 | + AuditDetails, |
| 17 | +} from '../../core/audit/audit-data.service'; |
9 | 18 | import { Audit } from '../../core/audit/model/audit.model'; |
10 | 19 | import { AuthorizationDataService } from '../../core/data/feature-authorization/authorization-data.service'; |
11 | 20 | import { PaginationService } from '../../core/pagination/pagination.service'; |
12 | 21 | import { PaginationComponent } from '../../shared/pagination/pagination.component'; |
13 | | -import { createSuccessfulRemoteDataObject, createSuccessfulRemoteDataObject$ } from '../../shared/remote-data.utils'; |
14 | | -import { AuditDetailsMock, AuditMock } from '../../shared/testing/audit.mock'; |
| 22 | +import { |
| 23 | + createSuccessfulRemoteDataObject, |
| 24 | + createSuccessfulRemoteDataObject$, |
| 25 | +} from '../../shared/remote-data.utils'; |
| 26 | +import { |
| 27 | + AuditDetailsMock, |
| 28 | + AuditMock, |
| 29 | +} from '../../shared/testing/audit.mock'; |
15 | 30 | import { PaginationServiceStub } from '../../shared/testing/pagination-service.stub'; |
16 | 31 | import { VarDirective } from '../../shared/utils/var.directive'; |
17 | 32 | import { AuditOverviewComponent } from './audit-overview.component'; |
18 | | -import { createPaginatedList } from '@shared/testing/utils.test'; |
19 | 33 |
|
20 | 34 | fdescribe('AuditOverviewComponent', () => { |
21 | 35 | let component: AuditOverviewComponent; |
|
0 commit comments