blob: d5a44f7ee4a01f6b5a7b9a41d724dbecc190d246 [file] [log] [blame]
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { StateLabelComponent } from './state-label.component';
describe('StateLabelComponent', () => {
let component: StateLabelComponent;
let fixture: ComponentFixture<StateLabelComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [StateLabelComponent],
imports: [HttpClientTestingModule],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(StateLabelComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});