debuts de tests unitaires

This commit is contained in:
Yannick Le Duc
2025-08-27 13:31:55 +02:00
parent dc388bf371
commit 924d2714c7
12 changed files with 6089 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
describe('Basic Test', () => {
it('should work', () => {
expect(1 + 1).toBe(2);
});
it('should handle async operations', async () => {
const result = await Promise.resolve('test');
expect(result).toBe('test');
});
});