basic.test.ts 283 B

12345678910111213
  1. // 基本测试来验证Jest配置
  2. describe('Basic Jest Test', () => {
  3. it('should work', () => {
  4. expect(1 + 1).toBe(2);
  5. });
  6. it('should support module mapping', () => {
  7. // 测试模块映射
  8. const testUtil = jest.fn();
  9. expect(testUtil).toBeDefined();
  10. });
  11. });