11 lines
239 B
TypeScript
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');
|
|
});
|
|
});
|