f0746d06db
- 删除 novalon 前端 src/ 下所有文件 - 从 gym-manage 复制前端 src/ 完整目录树 - 替换 gym-manage-api → novalon-manage-api - 替换 gym_system → manage_system - 无 gym 残留引用
13 lines
300 B
TypeScript
13 lines
300 B
TypeScript
import { describe, it, expect } from 'vitest'
|
|
|
|
describe('Vitest Configuration Test', () => {
|
|
it('should run a simple test', () => {
|
|
expect(1 + 1).toBe(2)
|
|
})
|
|
|
|
it('should handle async operations', async () => {
|
|
const result = await Promise.resolve(42)
|
|
expect(result).toBe(42)
|
|
})
|
|
})
|