funky-framadate-front/src/app/features/administration/form/steps/step-seven/step-seven.component.spec.ts

25 lines
621 B
TypeScript

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