Files
hv2-all-in-one/ui/hv2-ui/src/app/my-premises/my-premises.component.spec.ts

26 lines
655 B
TypeScript

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