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

25 lines
606 B
TypeScript

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