24 lines
535 B
TypeScript
24 lines
535 B
TypeScript
![]() |
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { Stepper } from './stepper';
|
||
|
|
||
|
describe('Stepper', () => {
|
||
|
let component: Stepper;
|
||
|
let fixture: ComponentFixture<Stepper>;
|
||
|
|
||
|
beforeEach(async () => {
|
||
|
await TestBed.configureTestingModule({
|
||
|
imports: [Stepper]
|
||
|
})
|
||
|
.compileComponents();
|
||
|
|
||
|
fixture = TestBed.createComponent(Stepper);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|