import { ComponentFixture, TestBed } from '@angular/core/testing'; import { HttpClientTestingModule } from '@angular/common/http/testing'; import { MAT_DIALOG_DATA, MatDialogModule, MatDialogRef } from '@angular/material/dialog'; import { ToastrModule } from 'ngx-toastr'; import { MatTableModule } from '@angular/material/table'; import { DatePipe } from '@angular/common'; import { CommandsComponent } from './commands.component'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { MatButtonModule } from '@angular/material/button'; import { MatDividerModule } from '@angular/material/divider'; import { MatFormFieldModule } from '@angular/material/form-field'; import { MatIconModule } from '@angular/material/icon'; import { MatInputModule } from '@angular/material/input'; import { MatPaginatorModule } from '@angular/material/paginator'; import { MatProgressSpinner, MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { MatSelectModule } from '@angular/material/select'; import { MatTooltipModule } from '@angular/material/tooltip'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { NgxChartsModule } from '@swimlane/ngx-charts'; import { TranslateModule } from '@ngx-translate/core'; import { JoyrideModule } from 'ngx-joyride'; import { LoadingComponent } from '../../../shared/loading/loading.component'; import { ConfigService } from '@services/config.service'; describe('CommandsComponent', () => { let component: CommandsComponent; let fixture: ComponentFixture; beforeEach(async () => { const mockConfigService = { apiUrl: 'http://mock-api-url', mercureUrl: 'http://mock-mercure-url' }; await TestBed.configureTestingModule({ declarations: [CommandsComponent, LoadingComponent], imports: [ HttpClientTestingModule, ToastrModule.forRoot(), BrowserAnimationsModule, MatDividerModule, MatFormFieldModule, MatInputModule, MatIconModule, MatButtonModule, MatTableModule, MatPaginatorModule, MatTooltipModule, FormsModule, MatProgressSpinner, MatProgressSpinnerModule, MatDialogModule, ReactiveFormsModule, MatSelectModule, NgxChartsModule, DatePipe, TranslateModule.forRoot(), JoyrideModule.forRoot(), ], providers: [ { provide: MatDialogRef, useValue: {} }, { provide: MAT_DIALOG_DATA, useValue: {} }, { provide: ConfigService, useValue: mockConfigService } ] }).compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(CommandsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });