chore: add init

This commit is contained in:
2023-02-14 21:10:35 +08:00
parent 6f61c400a1
commit 7b33d17118
4 changed files with 701 additions and 5 deletions

7
tests/demo.test.ts Normal file
View File

@ -0,0 +1,7 @@
import { describe, expect, it } from 'vitest'
describe('demo', () => {
it('should pass', () => {
expect(1).toBe(1)
})
})