repo-source-code-test-frameworks
GitHub用于为Formisch框架包编写单元测试和类型测试。涵盖Angular、React等框架的hooks、composables及组件指令,强调以React为基准保持跨框架一致性,规范测试命名、断言及覆盖率要求。
触发场景
安装
npx skills add open-circle/formisch --skill repo-source-code-test-frameworks -g -y
SKILL.md
Frontmatter
{
"name": "repo-source-code-test-frameworks",
"metadata": {
"author": "formisch",
"version": "1.0"
},
"description": "Write unit and type tests for Formisch framework packages (frameworks\/angular, frameworks\/preact, frameworks\/solid, frameworks\/svelte, frameworks\/vue, frameworks\/react, frameworks\/react-native). Use when adding tests for hooks\/composables\/runes\/inject functions (useForm\/createForm\/injectForm, useField\/injectField, useFieldArray\/injectFieldArray) or components and directives (Form, Field, FieldArray, formischForm, formischField) in any framework wrapper."
}
Writing Framework Tests
Tests for frameworks/<fw>/. For packages/core/ or packages/methods/, use repo-source-code-test-packages.
Rules
- React is the canonical reference. New shared tests land in
frameworks/reactfirst, then port. - Cross-framework consistency. Shared API (
useForm/createForm/injectForm,useField,useFieldArray,Field,FieldArray) keeps the samedescribe/testnames, schemas,initialInput, expected outputs. Only mechanical adapters differ. Test what the adapter actually exports: React Native has noFormcomponent, and Angular ships directives instead of components. - No framework hint in test names. Never
'should ... (Solid-only)'. Use a// ...comment above the test if framework-specific reasoning matters. - No tautological assertions. A test must be able to fail under a real source change.
- 100% coverage on non-excluded files. Match React's
vitest.config.tsexclusions:src/types,src/vitest,**/index.ts(x), test files. vi.waitForfor async, neversetTimeout(0).
File layout
frameworks/<fw>/
├── vitest.config.ts # framework plugin + jsdom + setupFiles + coverage exclusions
├── package.json # `test: vitest run --typecheck`, framework testing-library devDep
└── src/
├── vitest/
│ ├── setup.ts # jest-dom + cleanup
│ ├── renderHook.ts # (Vue/Svelte only)
│ └── *Host.svelte # (Svelte only) shared hosts
├── hooks|primitives|composables|runes|functions/<name>/<name>.test.{ts,tsx} + .test-d.ts
└── components|directives/<Name>/<Name>.test.{ts,tsx}
└── *Host.test.svelte # (Svelte only) per-test hosts
Standard test set
Identical describe/test names across all frameworks:
| Source | describe blocks |
Tests |
|---|---|---|
useForm / createForm / injectForm |
initialization, initial validation, reactivity |
4 + 2 type |
useField / injectField |
initialization, input updates, validation modes, element registration |
10 + 4 type |
useFieldArray / injectFieldArray |
initialization, reactivity |
6 + 4 type |
Form / Field / FieldArray |
(flat) | 3 each |
Form only exists where the adapter provides it: React Native has no Form component, and Angular ships the [formischForm] directive instead.
The store stability describe tests useMemo across re-renders and exists only in React and React Native. In other frameworks omit it with a one-line // Note: ... comment.
Per-framework adapters
| Concern | Preact | Solid | Svelte | Vue | React | React Native | Angular |
|---|---|---|---|---|---|---|---|
| Hook name | useForm |
createForm |
createForm |
useForm |
useForm |
useForm |
injectForm |
| Read state | form.isValid.value |
form.isValid |
form.isValid |
form.isValid |
form.isValid |
form.isValid |
form.isValid() |
| Imperative set | field.onInput(v) |
field.onInput(v) |
field.onInput(v) |
field.input = v |
field.onChange(v) |
field.onChange(v) |
field.setInput(v) |
| DOM input event | fireEvent.input |
fireEvent.input |
fireEvent.input |
input.setValue(v) |
fireEvent.change |
fireEvent.change |
input.dispatchEvent(new Event()) |
| Auto-focus prop | autofocus |
autofocus |
autofocus |
autofocus |
autoFocus |
none | none |
| Field children | function | function | {#snippet children} |
v-slot / scoped slot |
function | function | *formischField + let field |
| Testing library | @testing-library/preact |
@solidjs/testing-library |
@testing-library/svelte |
@vue/test-utils |
@testing-library/react |
@testing-library/react |
@angular/core/testing (TestBed) |
renderHook
- Preact / React / React Native: from the testing library —
{ result: { current }, rerender, unmount }. - Solid: from
@solidjs/testing-library—{ result, owner, cleanup }.resultis direct, not wrapped in.current. UsecreateRootfromsolid-jsonly if no JSX context is needed; our primitives need an owner sorenderHookis the default. - Vue: custom helper at
src/vitest/renderHook.ts— mounts adefineComponent({ setup() { return hook(); } })(the canonical Vue Test Utils TestComponent recipe). Required becauseonBeforeMount/computedneed component context. - Angular: no
renderHook. Call the inject functions insideTestBed.runInInjectionContext(() => …)(orrunInInjectionContext(injector, …)when you need to control destruction), and mount a host@ComponentwithTestBed.createComponentfor directive tests. - Svelte: custom helper at
src/vitest/renderHook.ts— mountsHook.svelte. Required becauseonMountand[createAttachmentKey()]need template context. For pure rune logic with no lifecycle,$effect.root(() => { ... })()in a.test.svelte.tsis lighter — but no covered rune in this repo qualifies.
Async
// ❌ flaky
await new Promise((r) => setTimeout(r, 0));
// ✅
await vi.waitFor(() => expect(form.isValid).toBe(false));
For Svelte rune updates, flushSync() from svelte synchronously drains derived/effect updates before the assertion. For Vue, flushPromises() from @vue/test-utils is fine for one-shot microtask drains; prefer vi.waitFor for multi-tick reactive flows.
Type tests (*.test-d.ts)
import * as v from 'valibot';
import { describe, expectTypeOf, test } from 'vitest';
import type { FieldStore } from '../../types/index.ts';
import { useForm } from '../useForm/index.ts';
import { useField } from './useField.ts';
describe('useField', () => {
test('should narrow input type for primitive leaves', () => {
const schema = v.object({ name: v.string() });
const form = useForm({ schema });
expectTypeOf(useField(form, { path: ['name'] }).input).toEqualTypeOf<
string | undefined
>();
});
test('should reject invalid paths', () => {
const form = useForm({ schema: v.object({ name: v.string() }) });
// @ts-expect-error nonexistent field
useField(form, { path: ['nonexistent'] });
});
});
For Preact, wrap leaf types in ReadonlySignal<...>, and for Angular in its Signal<...> — those are the only framework-specific deltas in .test-d.ts files. Angular's types/field.test-d.ts additionally checks that a FieldStore stays assignable across schema and path generics, which is what its directives rely on.
Schema types
Always derive with typeof schema. If the schema is referenced only at the type level (host owns runtime), suppress the lint warning rather than hand-writing the valibot generic shape:
// eslint-disable-next-line @typescript-eslint/no-unused-vars -- referenced only via `typeof schema`
const schema = v.object({ name: v.string() });
type Schema = typeof schema;
Framework gotchas
Angular — every reactive field.* / form.* is an Angular Signal<T>; read by calling it (field.isDirty()). Setter is field.setInput(v). There is no props object: templates bind [formischControl]="field" and pass the value with [value]="field.input() ?? ''". Field tests mount a host @Component whose template uses *formischField="['path'] of form; let field", configure TestBed with provideZonelessChangeDetection(), and drive the DOM with input.dispatchEvent(new Event('input')) followed by await fixture.whenStable() and fixture.detectChanges(). src/vitest/setup.ts already calls TestBed.initTestEnvironment and resets the module after each test.
Preact — every reactive field.* / form.* is a ReadonlySignal<T>; read with .value. Setter is field.onInput(v). DOM events fire on oninput. props.autofocus is lowercase.
React Native — tests render through react-native-web with @testing-library/react and jsdom, so fireEvent.change / fireEvent.focus work on the rendered TextInput. field.props has no name and no autoFocus; text is set via onChangeText. There is no Form component and no submit method, so submission tests call handleSubmit. Element cleanup differs by React version: react-native-web discards ref cleanup functions, so tests that assert per-element unregistration must render raw elements — see the comments in useField.test.tsx.
Solid — primitive is createForm (not useForm). Methods (insert, swap) don't need act(). Use class= not className= in JSX. vite-plugin-solid ≥ 2.8.2 auto-configures vitest; don't add manual deps overrides.
Vue — field.props has no onInput; wire DOM input via the setter:
h('input', {
...field.props,
value: field.input ?? '',
onInput: (e: Event) => {
field.input = (e.target as HTMLInputElement).value;
},
});
For "element removed" assertions, mount with attachTo: document.body and query document.querySelector — wrapper.find keeps finding stale nodes after unmount().
Svelte — runes need Svelte compilation. Three test patterns:
Hook.svelteviarenderHook— default; required when source callsonMountor uses[createAttachmentKey()].*Host.test.svelteper-test components — for snippet/slot rendering ofField/FieldArray/Form.$effect.rootin a*.test.svelte.ts— only for pure rune logic with no lifecycle.
Snippets can't run statements; forward values via {@const _ = onField(field)} with a comment explaining the pattern. After every test, cleanup() from @testing-library/svelte must run in setup.ts or screen.getByTestId finds duplicates.
Svelte build hygiene — package.json files excludes **/*.test.*, **/*.test-d.*, dist/vitest. Verify after adding new fixtures:
pnpm -C frameworks/svelte build && cd frameworks/svelte && pnpm pack --pack-destination /tmp/
tar -tzf /tmp/formisch-svelte-*.tgz | grep -E "(test|Host|vitest)" # must be empty
Coverage
cd frameworks/<fw> && pnpm exec vitest run --coverage
Must hit 100% on every non-excluded file. Common gaps that need framework-specific tests (no React analogue): field.props.onChange handler (Preact/Solid/Svelte/Vue, covered by validate:'change' test), usePathSignal length-mismatch branch (Preact), unwrap (Solid/Svelte). Add such tests with a // ... comment, not a (X-only) suffix.
Running
pnpm -C frameworks/<fw> test # runtime + type
pnpm -C frameworks/<fw> lint # eslint + tsc --noEmit
CI: <fw>_vitest job in .github/workflows/ci.yml.
Checklist
- Test names match React canonical names exactly (no
(X-only)suffixes) - Framework divergence justified by
// ...comment, not test name -
vi.waitForfor async, neversetTimeout(0) - Schema types via
typeof schema, never hand-written valibot generics - No tautological assertions
- 100% coverage on covered files
-
pnpm testandpnpm lintpass - (Svelte)
pnpm packoutput contains no test/Host/vitest files - CI has a
<fw>_vitestjob
版本历史
-
865212e
当前 2026-08-02 20:48
更新描述以包含 Solid, Svelte, Preact 框架;修正文件布局中 hooks 目录下的路径分隔符;在规则中明确 inject 系列函数;完善标准测试集表格;文档化 React Native 支持细节。
- 09acd5e 2026-07-24 11:30


