ng-implementation/my-workspace/projects/sae-lib/stepper/stepper.spec.ts
2025-10-13 12:47:50 +02:00

23 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();
});
});