build(fc2c-i): add Vitest harness and run it in CI

This commit is contained in:
2026-05-15 21:09:52 -04:00
parent 681d7777f3
commit 6bc7689f6e
3 changed files with 13 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'node',
include: ['test/**/*.spec.js'],
passWithNoTests: true
}
})