We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fa85b08 + 8ab9e46 commit c61c24cCopy full SHA for c61c24c
2 files changed
package.json
@@ -18,7 +18,7 @@
18
"type-check": "tsc --noEmit",
19
"bot:build": "tsc ./src/bot/index.ts --noEmit false --esModuleInterop --outDir ./build",
20
"bot:start": "probot run ./build/index.js",
21
- "test": "npm run type-check && TEST_LOGGING=1 vitest run",
+ "test": "TEST_LOGGING=1 vitest run",
22
"test:watch": "TEST_LOGGING=1 vitest",
23
"test:coverage": "TEST_LOGGING=1 vitest run --coverage",
24
"prepare": "husky || true"
vitest.config.ts
@@ -22,5 +22,11 @@ export default defineConfig({
'build/**',
],
},
25
+ typecheck: {
26
+ enabled: true,
27
+ checker: 'tsc',
28
+ include: ['test/**/*.ts'],
29
+ tsconfig: './tsconfig.json',
30
+ },
31
32
})
0 commit comments