pattern-test

Use Skill("ct") for ct CLI documentation when running commands.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "pattern-test" with this command: npx skills add commontoolsinc/labs/commontoolsinc-labs-pattern-test

Use Skill("ct") for ct CLI documentation when running commands.

Test Sub-Pattern

Prerequisite Check

Before writing tests, verify the pattern has:

  • pattern<Input, Output>() (not single-type pattern<State>() )

  • Actions typed as Stream<T> in Output interface

  • Bound handlers returned from the pattern

If missing, fix the pattern first - tests can't call .send() without proper Output types.

Read First

  • docs/common/workflows/pattern-testing.md
  • Full test file format and prerequisites

Test Command

deno task ct test packages/patterns/[name]/[file].test.tsx

Test File Template

import { action, computed, pattern } from "commontools"; import Pattern from "./pattern.tsx";

export default pattern(() => { // 1. Instantiate pattern under test const instance = Pattern({ /* input */ });

// 2. Define actions (trigger events) const action_do_something = action(() => { instance.someAction.send(); });

// 3. Define assertions (computed booleans) const assert_initial_state = computed(() => instance.someField === expectedValue); const assert_after_action = computed(() => instance.someField === newValue);

// 4. Return tests array return { tests: [ { assertion: assert_initial_state }, { action: action_do_something }, { assertion: assert_after_action }, ], }; });

Key Points

  • Test each sub-pattern BEFORE writing the next one

  • Use .send() to trigger actions (requires Stream in Output type)

  • Use direct property access to read values (not .get() )

  • Use computed(() => boolean) for assertions

Done When

  • Test file exists alongside pattern

  • Tests pass

  • Ready for next sub-pattern

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

pattern-dev

No summary provided by upstream source.

Repository SourceNeeds Review
Research

knowledge-base

No summary provided by upstream source.

Repository SourceNeeds Review
General

lit-component

No summary provided by upstream source.

Repository SourceNeeds Review