app.component.spec.ts 510 B

12345678910111213141516
  1. import { TestBed } from '@angular/core/testing';
  2. import { provideRouter } from '@angular/router';
  3. import { AppComponent } from './app.component';
  4. describe('AppComponent', () => {
  5. it('should create the app', async () => {
  6. await TestBed.configureTestingModule({
  7. imports: [AppComponent],
  8. providers: [provideRouter([])]
  9. }).compileComponents();
  10. const fixture = TestBed.createComponent(AppComponent);
  11. const app = fixture.componentInstance;
  12. expect(app).toBeTruthy();
  13. });
  14. });