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