We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37fd7fd commit cc2ee1dCopy full SHA for cc2ee1d
packages/adapter-sqlite/package.json
@@ -25,12 +25,18 @@
25
"sqlite-vec": "0.1.6"
26
},
27
"devDependencies": {
28
- "tsup": "8.3.5"
+ "tsup": "8.3.5",
29
+ "vitest": "^3.0.2",
30
+ "@vitest/coverage-v8": "^3.0.2",
31
+ "@vitest/ui": "^3.0.2"
32
33
"scripts": {
34
"build": "tsup --format esm --dts",
35
"dev": "tsup --format esm --dts --watch",
- "lint": "eslint --fix --cache ."
36
+ "lint": "eslint --fix --cache .",
37
+ "test": "vitest run",
38
+ "test:ui": "vitest --ui",
39
+ "test:coverage": "vitest run --coverage"
40
41
"peerDependencies": {
42
"whatwg-url": "7.1.0"
packages/adapter-sqlite/vitest.config.ts
@@ -0,0 +1,8 @@
1
+import { defineConfig } from 'vitest/config';
2
+
3
+export default defineConfig({
4
+ test: {
5
+ globals: true,
6
+ environment: 'node',
7
+ },
8
+});
0 commit comments