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

25 lines
604 B
TypeScript

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