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

23 lines
557 B
TypeScript

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