Files
wgenerator/src/app/app.component.spec.ts
2026-03-16 18:38:46 +01:00

17 lines
522 B
TypeScript

import {TestBed} from '@angular/core/testing';
import {RouterTestingModule} from '@angular/router/testing';
import {AppComponent} from './app.component';
describe('AppComponent', () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [RouterTestingModule, AppComponent],
}).compileComponents();
});
it('should create the app', () => {
const fixture = TestBed.createComponent(AppComponent);
void expect(fixture.debugElement.componentInstance).toBeTruthy();
});
});