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

25 lines
613 B
TypeScript
Raw Normal View History

2021-05-17 15:25:22 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { IntervalComponent } from './interval.component';
describe('IntervalComponent', () => {
let component: IntervalComponent;
let fixture: ComponentFixture<IntervalComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [IntervalComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(IntervalComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});