Agent skill
script-kit-testing
Testing infrastructure for Script Kit GPUI. Use when writing tests, running test suites, or understanding the test organization. Covers smoke tests, SDK tests, test helpers, and test output format.
Install this agent skill to your Project
npx add-skill https://github.com/johnlindquist/script-kit-next/tree/main/.claude/skills/script-kit-testing
SKILL.md
Script Kit Testing
Testing infrastructure and patterns for Script Kit GPUI.
Test Directories
tests/smoke/- E2E tests (run via stdin JSON protocol)tests/sdk/- SDK tests (oftenbun run ...)
SDK Preload in Tests
import '../../scripts/kit-sdk'; // globals: arg(), div(), editor(), fields(), captureScreenshot(), getLayoutInfo(), ...
Test Output JSONL Format
{"test":"arg-string-choices","status":"running","timestamp":"2024-..."}
{"test":"arg-string-choices","status":"pass","result":"Apple","duration_ms":45,"timestamp":"2024-..."}
Status values: running | pass | fail | skip (with error/reason)
Minimal Test Skeleton
import '../../scripts/kit-sdk';
function log(test: string, status: string, extra: any = {}) {
console.log(JSON.stringify({ test, status, timestamp: new Date().toISOString(), ...extra }));
}
const name = "my-test";
log(name, "running");
const start = Date.now();
try {
const result = await arg("Pick", ["A", "B"]);
log(name, "pass", { result, duration_ms: Date.now() - start });
} catch (e) {
log(name, "fail", { error: String(e), duration_ms: Date.now() - start });
}
Running Tests
# TypeScript SDK tests
bun run scripts/test-runner.ts
bun run scripts/test-runner.ts tests/sdk/test-arg.ts
# E2E smoke tests via stdin
cargo build && echo '{"type":"run","path":"'"$(pwd)"'/tests/sdk/test-arg.ts"}' | ./target/debug/script-kit-gpui
echo '{"type":"run","path":"'"$(pwd)"'/tests/smoke/hello-world.ts"}' | SCRIPT_KIT_AI_LOG=1 ./target/debug/script-kit-gpui 2>&1
# Rust unit tests
cargo test
# System tests (clipboard, accessibility, macOS APIs)
cargo test --features system-tests
# Run ignored interactive tests
cargo test --features system-tests -- --ignored
Verification Gate (Before Every Commit)
cargo check && cargo clippy --all-targets -- -D warnings && cargo test
Feature-Gated System Tests
Tests that use clipboard, accessibility APIs, or other system resources:
#[cfg(feature = "system-tests")]
#[test]
fn test_clipboard_integration() { ... }
Test Helpers
fn test_scriptlet(name: &str, tool: &str, code: &str) -> Scriptlet {
Scriptlet { name: name.to_string(), tool: tool.to_string(), code: code.to_string(), ..Default::default() }
}
fn wrap_scripts(scripts: Vec<Script>) -> Vec<Arc<Script>> {
scripts.into_iter().map(Arc::new).collect()
}
Platform-Specific Tests
#[cfg(target_os = "macos")]
#[test]
fn test_macos_specific() { ... }
#[cfg(unix)]
#[test]
fn test_unix_signals() { ... }
Anti-Patterns
- DON'T use
cx.run()in unit tests (needs running app) - DON'T rely on global state between tests
- DON'T hardcode paths (
/Users/john/...) - use temp dirs - DON'T forget platform guards for OS-specific tests
- DON'T skip cleanup (env vars, temp files)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
Generate Component Documentation
Based on existing docs styles and specific API implementations, and referencing same name stories, generate comprehensive documentation for the new component.
Generate Component Story
Generate a comprehensive story for a new component for as example.
new-component
How to write a new component of GPUI Component.
troubleshooting
Diagnose and fix common Script Kit issues. Use when the user reports bugs, crashes, missing features, or unexpected behavior in Script Kit GPUI.
script-authoring
Create and manage TypeScript scripts for Script Kit. Use when the user wants to write a new script, edit an existing script, or understand Script Kit's SDK and metadata system.
agents
Create mdflow-backed agent files for Script Kit. Use when the user wants to create AI agents, configure agent backends (Claude, Gemini, Codex), or manage agent metadata.
Didn't find tool you were looking for?