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

24 lines
521 B
TypeScript
Raw Normal View History

2025-08-07 16:06:25 +02:00
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Radio } from './radio';
2025-08-07 16:06:25 +02:00
describe('Radio', () => {
let component: Radio;
let fixture: ComponentFixture<Radio>;
2025-08-07 16:06:25 +02:00
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Radio]
2025-08-07 16:06:25 +02:00
})
.compileComponents();
fixture = TestBed.createComponent(Radio);
2025-08-07 16:06:25 +02:00
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});