refactor(stage-ui-mmd): use @moeru/three-mmd (#2167)

This commit is contained in:
藍+85CD
2026-07-30 00:15:11 +08:00
committed by GitHub
parent f63294487f
commit e29fcb8c2a
19 changed files with 725 additions and 456 deletions
+23 -1
View File
@@ -1,7 +1,29 @@
import { playwright } from '@vitest/browser-playwright'
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
include: ['src/**/*.test.ts'],
projects: [
{
test: {
name: 'node',
include: ['src/**/*.test.ts'],
exclude: ['src/**/*.browser.test.ts'],
},
},
{
test: {
name: 'browser',
include: ['src/**/*.browser.test.ts'],
browser: {
enabled: true,
provider: playwright(),
instances: [
{ browser: 'chromium' },
],
},
},
},
],
},
})