Files
pmu-plateforme-jeux-admin-plr/src/app/dashboard/pages/point-vente/point-vente.spec.ts
2026-01-06 14:07:09 +01:00

24 lines
580 B
TypeScript

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