testing-data-visualizations

작성자: openai

테스트 데이터 시각화 및 대시보드를 테스트합니다. 사용자가 차트나 다이어그램 테스트 전략, 스크린샷 또는 이미지 차이 테스트, 시각적 회귀, 모의 또는…이 필요할 때 사용하세요.

npx skills add https://github.com/openai/plugins --skill testing-data-visualizations

Testing Data Visualizations

Overview

Use this skill when the main question is how to verify a visualization, not just how to render one. Testing charts means protecting analytical truth, interaction behavior, rendering stability, and product integration without turning every pixel into a brittle contract.

Default assumption: use the smallest test mix that catches wrong numbers, broken interactions, and obvious visual regressions. Favor deterministic fixtures and targeted image baselines over giant snapshot suites.

Choose This Skill When

  • the user asks how to test a chart, dashboard, or visualization component
  • screenshot testing, image diffing, or visual regression is the main concern
  • the user needs help deciding what to mock and where to mock it
  • the question is about unit versus component versus E2E coverage
  • a live dashboard, export flow, or embedded chart needs QA strategy
  • the user wants help trimming a brittle or overgrown chart test suite

Working Pattern

  1. Identify the highest-risk failures:
    • wrong transforms, aggregation, binning, stacking, or sorting
    • wrong scale domain, legend mapping, or annotation placement
    • broken hover, focus, selection, brush, or cross-filter behavior
    • mobile layouts that put controls or prose before the main visualization, hide the chart behind settings, or fail to return to the chart after Apply, Cancel, Reset, or close
    • touch interactions with tiny hit targets, hover-only values, missing drag alternatives, scroll hijacking, or broken pinch/zoom ownership
    • on-screen keyboard and visual viewport regressions that cover the main evidence or the only critical action
    • operational workspace regressions where outline trees, filters, selected marks, central viewport, URL state, and inspectors fall out of sync
    • mobile capability regressions where AR, camera, motion, vibration, notification, or geolocation prompts appear too early, lack fallbacks, or become required without user approval
    • spotty-connection regressions where live visualizations blank out, lose stale indicators, mislabel partial data, or fail to reconnect gracefully
    • wheel-zoom, pinch, or drag interactions that also scroll the page or leak scroll chaining to the document
    • clipping, overlap, layout drift, or export mismatch
    • project changes or implementation code that began before the user approved a required generated design concept
    • Codex image-generated concepts whose implementation preserves only the vibe or pixels but loses the claim, source context, caveat, evidence hierarchy, layout contract, or interaction staging
    • generated asset crop, overlay alignment, or label-safe region regressions
    • Canvas or WebGL render readiness, context loss, blank frames, high-DPI scaling, and overlay alignment
    • WebGL fallback duplication where a fallback remains visible behind or above the primary scene
    • globe, map, terrain, or cutaway coordinate-frame regressions where markers, labels, textures, hit testing, and camera focus no longer align
    • interaction state-machine regressions where hover, selection, expansion, pause/resume, drag, wheel, reset, close, or idle behavior changes meaning
    • animated story states whose first frame, key frames, or final frame no longer communicate the claim
    • scrollytelling or parallax states that desynchronize text, data layers, media, trigger ranges, or reduced-motion fallbacks
    • composite reports, decks, or stories where embedded visual layers bypassed specialist mini-briefs and became generic chart cards
    • UML-like or software architecture diagrams with stale generated source, invalid relationships, broken import/export, layout overlap, lost source IDs, or round-trip drift
    • fictional or synthetic story simulations whose seeded data no longer supports the editorial claim, route ranking, event timing, or derived comparisons
    • stale, empty, partial, loading, or failure state regressions
  2. Choose the lightest effective layer:
    • unit tests for pure data shaping and formatting logic
    • component tests for public chart contracts and interaction callbacks
    • visual regression for layout-sensitive and appearance-sensitive states
    • E2E tests for real user workflows, async data behavior, and export paths
  3. Make rendering deterministic before asserting:
    • fixed viewport and container size
    • stable fonts, theme tokens, locale, and timezone
    • reduced or disabled animation
    • reduced-motion and final-state fixtures for animated stories
    • deterministic scroll position, viewport size, scene id, progress value, and media readiness for scrollytelling stories
    • deterministic WebGL camera, clock, particle seed, device pixel ratio, and quality settings
    • seeded or fixture-backed data
    • fixed generated asset fixtures or checked-in placeholders instead of live generation inside tests
    • approved large-screen and mobile concept screenshots or references plus a semantic design contract fixture, locked/flexible element fixture, concise concept-review bullet summary, and user approval record for concepted visualization work
    • deterministic desktop, mobile portrait, and optional mobile landscape viewport sizes
    • deterministic operational workspace fixtures for mode, selected entity, filters, outline scroll, inspector state, zoom or camera, and mobile panel state
    • visual viewport or keyboard-open fixture for input-heavy mobile views
    • mocked online, offline, delayed, stale, partial, and reconnect states for live/mobile data
    • mocked permission-denied and unsupported states for AR, camera, motion, vibration, notification, and geolocation paths when used
    • fixed fictional simulation seeds plus invariant checks for entity counts, event windows, value ranges, ranking outcomes, and summary consistency
    • explicit render-ready signals before capture
  4. Mock at the boundary:
    • prefer mocked network responses, data loaders, or repository adapters
    • keep transform and render logic real whenever practical
    • maintain canonical, edge-case, and stress fixtures
  5. Define the non-goals:
    • do not test third-party chart library internals
    • do not duplicate the same assertion at every layer
    • do not baseline volatile states unless the volatility is the feature
  6. When the visualization is operational or live, include stale, delayed, empty, and degraded modes.

Coverage Heuristics

  • Unit tests are appropriate for scales, domains, bin boundaries, sort rules, label formatting, tooltip payload shaping, color assignment, selection reducers, and any logic that can fail without rendering.
  • Component tests are appropriate for legends, axis labels that matter semantically, accessible names, empty and error states, callback payloads, interaction wiring, and conditional UI around the chart.
  • Screenshot or image tests are appropriate for overlap, clipping, tick collisions, annotation placement, color regressions, dense mark readability, and regression-prone layout states.
  • For art-directed editorial stories, screenshot tests are appropriate for first frame, selected key frames, final frame, generated-asset alignment, mobile crop behavior, and mobile portrait or landscape contract fidelity.
  • For concept-first visualization work, pair visual regression with semantic fidelity checks against the shared design workflow: approved concept references, recorded review bullets, implementation-after-approval evidence, locked and flexible elements, approved deviations, title claim, required comparison, denominator, scale, caveat, source visibility, measured/estimated/schematic styling, and data-bound label preservation.
  • For scrollytelling and parallax stories, cover enter, exit, reverse scroll, fast scroll, resize, reduced-motion, stacked mobile fallback, and static key frames.
  • For fictional visual stories, add data invariant tests before visual regression: deterministic seed output, minimum richness layers, expected event timing, primary claim truth, and derived summary agreement.
  • E2E tests are appropriate for cross-chart coordination, URL or filter state, live refresh behavior, drill-down, exports, downloads, and embedding or routing flows.
  • For Canvas or WebGL charts, rely more on data-contract tests, interaction tests, render-ready markers, canvas-pixel sanity checks, context-loss coverage, and targeted visual baselines than on DOM snapshots.
  • For advanced WebGL/geospatial/cutaway work, include desktop, mobile portrait, and optional mobile landscape screenshots, a no-WebGL fallback screenshot, a nonblank canvas-pixel or first-frame check, coordinate alignment spot checks, and live interaction smoke tests for drag, wheel, click, tap, hover, keyboard, reset, expand, close, and pinch as applicable.
  • For mobile dashboards and live views, cover last-known-good rendering, stale/live/offline/partial badges, delayed events, reconnect, background/resume, lower-frequency degradation, notification opt-in, and vibration or alert fallbacks when used.
  • For particle or flow animation, capture first frame, a representative key frame, final or paused state, and reduced-motion fallback rather than baselining every frame.
  • For UML-like diagrams, test parser/model normalization, semantic diagnostics, layout fixtures, interaction states, export snapshots, and source round-tripping when the product promises it.

Output Expectations

  • Propose a layered test plan instead of a single-tool answer.
  • Separate data correctness, visual stability, and workflow coverage.
  • Explain where real data, mocked data, and synthetic fixtures each belong.
  • Call out brittleness risks and how to keep the suite deterministic.
  • When implementing tests, start with the narrowest high-value slice before scaling coverage.
  • For visual stories, include a human review checklist in release notes when imagery, WebGL, particles, 3D, or animation materially affects interpretation.
  • For concepted work, include the shared workflow evidence: approval status, approved concept references, concise review bullets, visual design contract, locked/flexible element record, mobile/landscape continuation record, material mismatches, fixes or approved deviations, and semantic fidelity QA results.
  • For mobile-capable browser work, include screenshot or interaction checks for mobile portrait, mobile landscape when justified, main-visualization visibility, settings return path, touch targets, hover replacement, drag alternatives, keyboard-open viewport, spotty connection, and permission-denied fallbacks.
  • For operational workspaces, include checks for command bars, outline/filter/detail panels, default selection, synchronized inspector state, pan/zoom/reset, empty-surface click versus drag, URL restore, and mobile command-panel behavior.
  • For composite deliverables, include embedded visualization self-use review notes: each layer's specialist owner, mini-brief, QA check, and delegated or local fresh-pass status.
  • For simulated stories, include data-richness and self-use-gate review notes: which specialist skill shaped each embedded visualization, which mini-brief it followed, and which invariants prove the fictional data still supports the story.

References

  • Shared theory:
    • ../../references/foundations/implementation-design-and-tradeoffs.md
    • ../../references/foundations/meaning-preserving-visual-design-workflow.md
    • ../../references/foundations/embedded-visualization-self-use.md
    • ../../references/foundations/mobile-first-responsive-visualization.md
    • ../../references/foundations/operational-visualization-workspaces.md
  • Skill references:
    • ./references/test-level-selection.md
    • ./references/unit-and-component-tests.md
    • ./references/visual-regression-and-image-testing.md
    • ./references/data-mocking-and-fixtures.md
    • ./references/e2e-dashboard-and-export-strategies.md
    • ./references/avoiding-brittle-over-testing.md
  • Useful templates:
    • ../../assets/templates/visualization-test-plan.md
    • ../../assets/templates/visual-design-contract.md
    • ../../assets/templates/advanced-interactive-visualization-contract.md
    • ../../assets/templates/interactive-uml-test-plan.md
    • ../../assets/templates/playwright-visual-regression-starter.ts
  • Adjacent skills:
    • ../scrollytelling-and-parallax-data-visualization/SKILL.md
    • ../uml-and-software-architecture-visualization/SKILL.md
    • ../react-and-nextjs-data-visualization/SKILL.md
    • ../typescript-data-visualization-engineering/SKILL.md
    • ../../references/foundations/fictional-data-story-simulation.md
    • ../dashboards-and-real-time-visualization/SKILL.md
    • ../accessibility-and-inclusive-visualization/SKILL.md

Representative Prompts

  • "How should I test this React chart component?"
  • "Set up screenshot testing for this dashboard without making it flaky."
  • "What data should I mock for this D3 or Canvas visualization?"
  • "Which parts of this chart deserve unit tests versus E2E tests?"
  • "Help me design visual regression coverage for a live monitoring screen."
  • "Review this visualization test suite and tell me what to delete."
  • "Design tests for a parallax scrollytelling story without making screenshots flaky."
  • "Design tests for an interactive UML, ERD, state machine, flow, dependency, or architecture diagram."

openai의 다른 스킬

user-context
openai
데이터 분석 플러그인의 지속적인 소스 라우팅 기본 설정, 온보딩 로직, 설정 진행 상황 및 의미 계층 레지스트리를 로드하거나 관리합니다.
official
notion-research-documentation
openai
Notion 콘텐츠를 조사하고 인용문과 함께 구조화된 브리핑, 보고서 또는 비교 자료로 종합합니다. 대상 질의를 사용해 Notion 페이지를 검색하고 가져온 후, 인라인 출처 인용과 참고 문헌 섹션을 포함해 주제별로 결과를 정리합니다. 범위와 사용자 목표에 따라 네 가지 출력 형식(빠른 브리핑, 연구 요약, 비교, 종합 보고서) 중에서 선택합니다. 내장 템플릿을 사용해 Notion 페이지를 생성 및 업데이트하고, 새 정보가 도착하면 출처를 직접 연결하고 변경 사항을 추적합니다...
official
rcsb-pdb-skill
openai
핵심 메타데이터, Search API 쿼리 및 FASTA 다운로드를 위한 간결한 RCSB PDB 요청을 제출합니다. 사용자가 간결한 RCSB 요약을 원할 때 사용하며, 원시 JSON 또는…을 저장합니다.
official
pdf
openai
PDF 읽기, 생성 및 검증 기능을 제공하며, 시각적 렌더링과 프로그래매틱 생성을 지원합니다. Poppler(pdftoppm)를 사용하여 PDF 페이지를 PNG로 렌더링하여 레이아웃, 간격, 타이포그래피를 시각적으로 검사할 수 있습니다. reportlab을 사용하여 프로그래매틱 방식으로 PDF를 생성하여 안정적인 포맷을 보장하며, pdfplumber 또는 pypdf를 통해 텍스트와 메타데이터를 추출합니다. 품질 기준을 준수합니다: 잘린 텍스트, 겹치는 요소, 깨진 표, 렌더링 아티팩트가 없어야 하며, ASCII 하이픈만 사용하고 사람이 읽을 수 있는 인용을 사용합니다.
official
test-coverage-improver
openai
Improve test coverage in the OpenAI Agents JS monorepo: run `pnpm test:coverage`, inspect coverage artifacts, identify low-coverage files and branches, propose…
official
playwright
openai
터미널 기반 브라우저 자동화로 요소 스냅샷 및 대화형 UI 워크플로우 지원. playwright-cli 래퍼 스크립트를 통해 작동하며(npx 필요), 헤드리스 및 헤드 모드 모두 지원하여 시각적 디버깅 가능. 핵심 워크플로우: 페이지 열기, 안정적인 요소 참조를 위한 스냅샷 생성, 참조를 사용한 상호작용, 탐색 또는 DOM 변경 후 재스냅샷. 양식 작성, 클릭, 타이핑, 다중 탭 관리, 스크린샷/PDF 캡처, 흐름 디버깅을 위한 트레이스 기록 포함. 요소 참조(예: e3, e15)...
official
ukb-topmed-phewas-skill
openai
단일 변이에 대한 간결한 UKB-TOPMed PheWAS 요약을 가져오며, rsID, GRCh37 또는 GRCh38 입력을 받아 필요한 GRCh38 쿼리로 변환합니다. 다음과 같은 경우에 사용하세요…
official
code-review-context
openai
모델 가시 컨텍스트
official