17 lines
522 B
TypeScript
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();
|
|
});
|
|
});
|