funky-framadate-front/src/app/features/administration/form/hours/hours.component.spec.ts

25 lines
592 B
TypeScript

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