Thanks @glifocat! Clean skill package — good docs, solid tests, nice intent files. Pushed a small fix for path traversal on the PDF filename before merging.
8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['.claude/skills/**/tests/*.test.ts'],
|
|
},
|
|
});
|