Files
projet-tlc/ansible/files/doodlestudent/front/src/app/card-small-component/card-small-component.component.spec.ts
Alexandre Chevalier 2291a85b79 deploiement sur VM
2026-02-13 23:37:08 +01:00

26 lines
712 B
TypeScript

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