Fixed some tests

This commit is contained in:
Erik Tiekstra
2021-05-05 07:53:33 +02:00
parent 788b49ca3e
commit 4525953a78
5 changed files with 25 additions and 5 deletions

View File

@@ -1,4 +1,12 @@
import { DigiNgFormCheckboxModule } from '@af/digi-ng/_form/form-checkbox';
import { DigiNgFormDatepickerModule } from '@af/digi-ng/_form/form-datepicker';
import { DigiNgFormInputModule } from '@af/digi-ng/_form/form-input';
import { DigiNgFormRadiobuttonGroupModule } from '@af/digi-ng/_form/form-radiobutton-group';
import { DigiNgFormSelectModule } from '@af/digi-ng/_form/form-select';
import { DigiNgPopoverModule } from '@af/digi-ng/_popover/popover';
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { ReactiveFormsModule } from '@angular/forms';
import { RouterTestingModule } from '@angular/router/testing'; import { RouterTestingModule } from '@angular/router/testing';
import { CreateAccountComponent } from './create-account.component'; import { CreateAccountComponent } from './create-account.component';
@@ -10,7 +18,17 @@ describe('CreateAccountComponent', () => {
waitForAsync(() => { waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [CreateAccountComponent], declarations: [CreateAccountComponent],
imports: [RouterTestingModule], imports: [
RouterTestingModule,
HttpClientTestingModule,
ReactiveFormsModule,
DigiNgFormInputModule,
DigiNgFormRadiobuttonGroupModule,
DigiNgFormDatepickerModule,
DigiNgFormSelectModule,
DigiNgPopoverModule,
DigiNgFormCheckboxModule,
],
}).compileComponents(); }).compileComponents();
}) })
); );

View File

@@ -1,3 +1,4 @@
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing'; import { RouterTestingModule } from '@angular/router/testing';
import { EmployeeCardComponent } from './employee-card.component'; import { EmployeeCardComponent } from './employee-card.component';
@@ -10,7 +11,7 @@ describe('EmployeeCardComponent', () => {
waitForAsync(() => { waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [EmployeeCardComponent], declarations: [EmployeeCardComponent],
imports: [RouterTestingModule], imports: [RouterTestingModule, HttpClientTestingModule],
}).compileComponents(); }).compileComponents();
}) })
); );

View File

@@ -1,3 +1,4 @@
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing'; import { RouterTestingModule } from '@angular/router/testing';
import { EmployeesComponent } from './employees.component'; import { EmployeesComponent } from './employees.component';
@@ -10,7 +11,7 @@ describe('EmployeesComponent', () => {
waitForAsync(() => { waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [EmployeesComponent], declarations: [EmployeesComponent],
imports: [RouterTestingModule], imports: [RouterTestingModule, HttpClientTestingModule],
}).compileComponents(); }).compileComponents();
}) })
); );

View File

@@ -1,5 +1,5 @@
import { DigiNgSkeletonBaseModule } from '@af/digi-ng/_skeleton/skeleton-base'; import { DigiNgSkeletonBaseModule } from '@af/digi-ng/_skeleton/skeleton-base';
import { HttpClientModule } from '@angular/common/http'; import { HttpClientTestingModule } from '@angular/common/http/testing';
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing'; import { RouterTestingModule } from '@angular/router/testing';
import { ParticipantsListModule } from './components/participants-list/participants-list.module'; import { ParticipantsListModule } from './components/participants-list/participants-list.module';
@@ -13,7 +13,7 @@ describe('ParticipantsComponent', () => {
waitForAsync(() => { waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ParticipantsComponent], declarations: [ParticipantsComponent],
imports: [RouterTestingModule, HttpClientModule, DigiNgSkeletonBaseModule, ParticipantsListModule], imports: [RouterTestingModule, HttpClientTestingModule, DigiNgSkeletonBaseModule, ParticipantsListModule],
}).compileComponents(); }).compileComponents();
}) })
); );