feat(runtime-tests): integration test suite

21 test files covering components, composables, focus, lifecycle,
and scheduler through the public render() API.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Yunfei He
2026-05-24 18:13:53 +08:00
parent 71c517b79f
commit a7f7d9957d
24 changed files with 997 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from "vite-plus";
import vueJsx from "@vitejs/plugin-vue-jsx";
export default defineConfig({
plugins: [vueJsx()],
lint: {
options: { typeAware: true, typeCheck: true },
},
fmt: {},
});