Tests run again. Regenerated all with angular 17.

This commit is contained in:
Manuel Friedli 2024-01-22 02:37:28 +01:00
parent 59cb96f426
commit d8e4c7689f
Signed by: manuel
GPG key ID: 41D08ABA75634DA1
51 changed files with 704 additions and 3998 deletions

View file

@ -1,4 +1,4 @@
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
import {ComponentFixture, TestBed} from '@angular/core/testing';
import {ConverterSelectorComponent} from './converter-selector.component';
import {Component, ViewChild} from '@angular/core';
@ -17,7 +17,7 @@ class TestHostComponent {
public step: Step = new Step(42);
public textInputComponent: TextInputFieldComponent = new TextInputFieldComponent(inputComponentManagerServiceStub);
@ViewChild(ConverterSelectorComponent)
public sutComponent: ConverterSelectorComponent;
public sutComponent!: ConverterSelectorComponent;
}
const inputComponentManagerServiceStub = createSpyObj(['getNext']);
@ -39,10 +39,10 @@ describe('ConverterSelectorComponent', () => {
converterRegistryServiceStub.getAllConverters.and.returnValue([converter1, converter2, converter3]);
converterRegistryServiceStub.getConverter.and.returnValue(undefined);
beforeEach(async(() => {
TestBed.configureTestingModule({
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ConverterSelectorComponent],
declarations: [
ConverterSelectorComponent,
TestHostComponent
],
providers: [
@ -51,7 +51,7 @@ describe('ConverterSelectorComponent', () => {
]
})
.compileComponents();
}));
});
beforeEach(() => {
testHostFixture = TestBed.createComponent(TestHostComponent);
@ -59,7 +59,7 @@ describe('ConverterSelectorComponent', () => {
testHostFixture.detectChanges();
});
it('should create', () => {
it('should create the component', () => {
expect(testHostComponent.sutComponent).toBeTruthy();
});