feat: 添加query功能

This commit is contained in:
2024-09-08 04:32:41 +08:00
parent 443a41110a
commit 360f6ba180
24 changed files with 6228 additions and 48 deletions

7
test/hello.test.ts Normal file
View File

@@ -0,0 +1,7 @@
describe('Hello', () => {
// 编写一个测试用例
// yarn test --testNamePattern='Hello'
test('Hello World', () => {
console.log('Hello World');
});
});