test(core): add PageAgentCore lifecycle tests

This commit is contained in:
Simon
2026-06-09 17:07:10 +08:00
parent 797c238862
commit daae28db34
5 changed files with 286 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
name: 'core',
include: ['src/**/*.test.ts'],
silent: 'passed-only',
},
})