ng-implementation/my-workspace/projects/sae-lib/buttons/main-button/main-button.spec.ts

24 lines
555 B
TypeScript
Raw Normal View History

2025-09-10 13:00:31 +02:00
import {ComponentFixture, TestBed} from '@angular/core/testing';
import {MainButton} from './main-button';
describe('MainButton', () => {
let component: MainButton;
let fixture: ComponentFixture<MainButton>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [MainButton]
})
.compileComponents();
fixture = TestBed.createComponent(MainButton);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});