-
AndiMajore authoredAndiMajore authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
info-tile.component.spec.ts 747 B
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { InfoTileComponent } from './info-tile.component';
import {HttpClientModule} from '@angular/common/http';
describe('InfoBoxComponent', () => {
let component: InfoTileComponent;
let fixture: ComponentFixture<InfoTileComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ InfoTileComponent ],
imports: [HttpClientModule],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(InfoTileComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});