ng-implementation/my-workspace/projects/sae-lib/popups/tooltip/tooltip.spec.ts

24 lines
535 B
TypeScript
Raw Normal View History

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