23 lines
557 B
TypeScript
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();
|
|
});
|
|
});
|