angularMeteo/src/app/call-api/call-api.component.spec.ts
2021-11-27 19:11:48 +01:00

25 lines
634 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { CallApiComponent } from './call-api.component';
describe('CallApiComponent', () => {
let component: CallApiComponent;
let fixture: ComponentFixture<CallApiComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ CallApiComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(CallApiComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});