funky-framadate-front/src/app/features/administration/form/date/list/time/time-list.component.spec.ts

25 lines
614 B
TypeScript

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