Files
mes-budgets-participatifs/src/__tests__/basic.test.ts
2025-08-27 13:31:55 +02:00

11 lines
239 B
TypeScript

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');
});
});