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