testing

A testing guide for frontend components in the nvcf-ui app using Vitest, Testing Library, and MSW, a tool for mocking network responses. It explains which test setup to use for routes, standalone components, and utility functions.

In plain words
What is it for?
Use it when adding or changing UI components, writing component tests, testing route-level views, or setting up mocked API scenarios.
Why use it?
It prevents common test failures caused by missing router context or duplicated mock logic. It also keeps tests beside the code they cover.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/nvidia/nvcf/testing
Any agent
npx skills add NVIDIA/nvcf --skill testing
Clone the repo
git clone --depth 1 https://github.com/NVIDIA/nvcf

Made for: Claude Code, Codex.

Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 516 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00089 $0.00516
Opus 5 $0.00044 $0.00258
Sonnet 5 $0.00018 $0.00103
Haiku 4.5 $0.00009 $0.00052

Measured 2d ago against content hash 98156c39774f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

testing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/uis/nvcf-ui/.claude/skills/testing/SKILL.md · 56 lines

What it actually says

Testing

Tests are not optional — when adding or modifying a component, add or update the corresponding tests.

Gotchas

  • Route-level views that use useSearch, useParams, or loaders must use renderWithRouter from ~/testing/render, not the standard render. Using standard render will fail because route hooks need router context.
  • MSW handlers from scenarios should be reused in tests — don't duplicate handler logic. Import from ~/mocks/scenarios/.
  • Test files live alongside the code they test (WidgetsList.test.tsx next to WidgetsList.tsx), not in a separate __tests__ directory.

Which Render Helper to Use

  • Route-level viewsrenderWithRouter from ~/testing/render (sets up router, query client, memory history)
  • Standalone components (no route dependency) → standard render from @testing-library/react
  • Pure utility functions → test directly, no render needed

MSW in Tests

import { setupServer } from "msw/node";
import { getMyHandlers } from "~/mocks/scenarios/myFeature/myScenario";

const server = setupServer(...getMyHandlers());

beforeAll(() => server.listen());
afterEach(() => server.resetHandlers());
afterAll(() => server.close());

Guidelines

  • Prefer screen.getByRole, screen.getByText, and other accessible queries over test IDs
  • Use userEvent over fireEvent for realistic interaction simulation
  • Test loading states, error states, and empty states — not just the happy path
  • For async operations, use waitFor or findBy queries

Validate

  1. Run task ui:test and verify tests pass
  2. If tests fail, fix the issues and rerun until clean
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 56 lines · 89 tokens per session scan A 98156c39774f

Subscribe to this mod's changes

testing is a skill published in the GitHub repository NVIDIA/nvcf (202 stars, last pushed 2d ago), licensed Apache-2.0. It adds 89 tokens to every session and 516 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

vmware-privateai

Use this skill whenever the user needs the GPU / AI-infrastructure layer of VMware Private AI Foundation with NVIDIA (PAIF-N) on vSphere 9.x / VCF 9.1: inventory GPU hosts and physical GPU devices, see which VMs consume a vGPU and the profile each holds, read real-time GPU utilization, list the vGPU and DirectPath…

vmware-skills/VMware-PrivateAI · 237 tokens

kubernetes-mesh-provisioner

Kubernetes Mesh Provisioner atomic skill. Stands up an RKE2 cluster (server + agents) with Cilium CNI and the NVIDIA GPU device plugin, the Kubernetes parallel of swarm-mesh-provisioner. Idempotent — re-runnable.

Knuckles-Team/container-manager-mcp · 60 tokens

accelerated-computing-cudf

Official NVIDIA-authored guidance for NVIDIA cuDF GPU DataFrames, pandas acceleration, dask-cuDF, ETL, joins, groupby, CSV/Parquet I/O, nullable semantics, and multi-GPU DataFrame workloads.

PracticalSwan/agent-skills · 56 tokens

llm-torch-profiler-analysis

Unified LLM torch-profiler triage skill for sglang, vllm, TensorRT-LLM, and TokenSpeed. Use it to inspect an existing trace.json(.gz) or profile directory, or to drive live profiling against a running server when supported and return one three-table report with kernel, overlap-opportunity, and fuse-pattern tables.

sgl-project/sglang · 84 tokens

cookbook-review-pr

Review a pull request against the SGLang Cookbook (docs/, Mintlify) contribution checklist — the config-driven format (per-model config + benchmarks JSX consumed by the shared deployment.jsx / playground.jsx engines). Run with /cookbook-review-pr .

sgl-project/sglang · 60 tokens

speculative-naming

Naming conventions for SGLang speculative decoding identifiers. Use when adding, renaming, or reviewing identifiers in speculative decoding code — anything under python/sglang/srt/speculative/, related attention backends, scheduler accumulators, IPC fields, observability metrics, or CLI flags.

sgl-project/sglang · 63 tokens