Add under-anything knowledge dashboard

This commit is contained in:
qiaoxinjiu
2026-05-27 15:40:32 +08:00
commit e31a75d2bb
565 changed files with 143063 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vitest/config';
// The plugin package no longer ships any test files — they were relocated
// to the repo-root `tests/` tree so they no longer ride along with the
// plugin marketplace bundle. This config exists solely to shadow the
// repo-root vitest.config.ts (which would otherwise be inherited via
// upward config discovery from this cwd) and explicitly resolve no tests.
//
// Run skill tests from the repo root with `pnpm test` instead.
export default defineConfig({
test: {
include: [],
},
});