Agent Skillsopen-circle/formisch › repo-source-code-test-frameworks

repo-source-code-test-frameworks

GitHub

用于为Formisch框架包编写单元测试和类型测试。涵盖Angular、React等框架的hooks、composables及组件指令,强调以React为基准保持跨框架一致性,规范测试命名、断言及覆盖率要求。

.agents/skills/repo-source-code-test-frameworks/SKILL.md open-circle/formisch

触发场景

为 Formisch 框架包装器(如 Angular, React, Vue 等)添加 hooks 或组件测试 需要遵循跨框架一致的测试结构和命名规范 处理 useForm, useField, Form 等核心 API 的测试用例

安装

npx skills add open-circle/formisch --skill repo-source-code-test-frameworks -g -y
更多选项

非标准路径

npx skills add https://github.com/open-circle/formisch/tree/main/.agents/skills/repo-source-code-test-frameworks -g -y

不安装直接使用

npx skills use open-circle/formisch@repo-source-code-test-frameworks

指定 Agent (Claude Code)

npx skills add open-circle/formisch --skill repo-source-code-test-frameworks -a claude-code -g -y

安装 repo 全部 skill

npx skills add open-circle/formisch --all -g -y

预览 repo 内 skill

npx skills add open-circle/formisch --list

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

  1. React is the canonical reference. New shared tests land in frameworks/react first, then port.
  2. Cross-framework consistency. Shared API (useForm/createForm/injectForm, useField, useFieldArray, Field, FieldArray) keeps the same describe/test names, schemas, initialInput, expected outputs. Only mechanical adapters differ. Test what the adapter actually exports: React Native has no Form component, and Angular ships directives instead of components.
  3. No framework hint in test names. Never 'should ... (Solid-only)'. Use a // ... comment above the test if framework-specific reasoning matters.
  4. No tautological assertions. A test must be able to fail under a real source change.
  5. 100% coverage on non-excluded files. Match React's vitest.config.ts exclusions: src/types, src/vitest, **/index.ts(x), test files.
  6. vi.waitFor for async, never setTimeout(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 }. result is direct, not wrapped in .current. Use createRoot from solid-js only if no JSX context is needed; our primitives need an owner so renderHook is the default.
  • Vue: custom helper at src/vitest/renderHook.ts — mounts a defineComponent({ setup() { return hook(); } }) (the canonical Vue Test Utils TestComponent recipe). Required because onBeforeMount/computed need component context.
  • Angular: no renderHook. Call the inject functions inside TestBed.runInInjectionContext(() => …) (or runInInjectionContext(injector, …) when you need to control destruction), and mount a host @Component with TestBed.createComponent for directive tests.
  • Svelte: custom helper at src/vitest/renderHook.ts — mounts Hook.svelte. Required because onMount and [createAttachmentKey()] need template context. For pure rune logic with no lifecycle, $effect.root(() => { ... })() in a .test.svelte.ts is 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.

Vuefield.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.querySelectorwrapper.find keeps finding stale nodes after unmount().

Svelte — runes need Svelte compilation. Three test patterns:

  • Hook.svelte via renderHook — default; required when source calls onMount or uses [createAttachmentKey()].
  • *Host.test.svelte per-test components — for snippet/slot rendering of Field/FieldArray/Form.
  • $effect.root in 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 hygienepackage.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.waitFor for async, never setTimeout(0)
  • Schema types via typeof schema, never hand-written valibot generics
  • No tautological assertions
  • 100% coverage on covered files
  • pnpm test and pnpm lint pass
  • (Svelte) pnpm pack output contains no test/Host/vitest files
  • CI has a <fw>_vitest job

版本历史

  • 865212e 当前 2026-08-02 20:48

    更新描述以包含 Solid, Svelte, Preact 框架;修正文件布局中 hooks 目录下的路径分隔符;在规则中明确 inject 系列函数;完善标准测试集表格;文档化 React Native 支持细节。

  • 09acd5e 2026-07-24 11:30

同 Skill 集合

.agents/skills/repo-prepare-release/SKILL.md
.agents/skills/repo-source-code-document/SKILL.md
.agents/skills/repo-source-code-review/SKILL.md
.agents/skills/repo-source-code-test-packages/SKILL.md
.agents/skills/repo-structure-navigate/SKILL.md
.agents/skills/repo-website-api-create/SKILL.md
.agents/skills/repo-website-api-review/SKILL.md
.agents/skills/repo-website-api-update/SKILL.md
.agents/skills/repo-website-guide-create/SKILL.md
website/public/.well-known/agent-skills/formisch/SKILL.md

元信息

文件数
0
版本
865212e
Hash
c6b83933
收录时间
2026-07-24 11:30

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-08 06:03
浙ICP备14020137号-1 $访客地图$