Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

testing-blocks测试块

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

13,219

周安装

389

GitHub Stars

40

下载量

5,480
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:testing-blocks(测试块)
来源仓库:https://github.com/adobe/helix-website
仓库路径:skills/testing-blocks
安装命令:
npx skills add https://github.com/adobe/helix-website --skill 'Testing Blocks'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/adobe/helix-website --skill 'Testing Blocks'

简介

AEM Edge Delivery 中的测试遵循务实的价值与成本方法:

  • 创建 keeper 测试:
  • 逻辑密集型实用程序
  • 数据处理和转换
  • API集成
  • 共享库
  • 使用一次性浏览器测试:
  • 块装饰验证
  • 视觉外观
  • DOM结构
  • 互动行为
  • 总是这样做:
  • 在提交之前运行 linting
  • 在浏览器中手动测试
  • 验证 GitHub 检查是否通过
  • 在 PR 中包含测试链接
  • 请记住:目标是确保您的代码正确运行,而不是实现 100% 的测试覆盖率。编写提供价值的测试,并验证浏览器中的其他所有内容。
  • 每周安装量
  • 存储库
  • adobe/helix-网站
  • GitHub 之星
  • 40
  • 第一次看到
  • 安全审计
  • Gen Agent Trust Hub 通行证
  • 套接字通行证
  • 斯尼克警告

SKILL.md

Testing Blocks

This skill guides you through testing code changes in AEM Edge Delivery Services projects. Testing follows a value-versus-cost philosophy: create and maintain tests when the value they bring exceeds the cost of creation and maintenance.

Related Skills

  • content-driven-development: Test content created during CDD serves as the basis for testing
  • building-blocks: This skill is automatically invoked after block implementation
  • block-collection-and-party: May provide reference test patterns from similar blocks

When to Use This Skill

Use this skill:

  • ✅ After implementing or modifying blocks
  • ✅ After changes to core scripts (scripts.js, delayed.js, aem.js)
  • ✅ After style changes (styles.css, lazy-styles.css)
  • ✅ After configuration changes that affect functionality
  • ✅ Before opening any pull request with code changes

This skill should be automatically invoked by the building-blocks skill after implementation is complete.

Testing Philosophy: Value vs Cost

The Principle: Create and maintain tests when the value they bring exceeds the cost of creation and maintenance.

Keeper Tests (High Value, Worth Maintaining)

Write unit tests for:

  • Logic-heavy utility functions used across multiple blocks
  • Data processing and transformation logic
  • API integrations and external service interactions
  • Complex algorithms or business logic
  • Shared libraries and helper functions

These tests provide lasting value because they catch regressions in reused code, serve as living documentation, and are fast and easy to maintain.

Throwaway Tests (Lower Value, Use Once)

⚠️ Use browser tests for:

  • Block decoration logic (DOM transformations)
  • Specific DOM structures or UI layouts
  • Visual appearance validation
  • Block-specific rendering behavior

These tests are better done in a browser because DOM structures change frequently, visual validation requires human judgment, and maintaining UI tests is expensive relative to their value.

Important: Even throwaway tests have value! Use them to:

  1. Validate your implementation works correctly
  2. Take screenshots to evaluate visual correctness
  3. Show screenshots to humans for feedback
  4. Include screenshots in PRs to aid review

Organization: Keep throwaway tests in test/tmp/ and test content in drafts/tmp/. Both directories should be gitignored so temporary test artifacts aren't committed.

Testing Checklist

Before opening a pull request, complete ALL of the following:

  • Existing tests pass - All keeper tests still pass with your changes
  • Unit tests written - New keeper tests for any logic-heavy utilities or data processing
  • Browser validation - Feature tested in local dev server, screenshots captured
  • All variants tested - Each variant/configuration of blocks validated
  • Responsive behavior - Tested on mobile, tablet, desktop viewports
  • Linting passes - npm run lint completes without errors
  • Branch pushed - Code committed and pushed to feature branch
  • GitHub checks verified - Use gh checks to confirm all CI checks pass

Testing Methods Overview

1. Unit Tests (KEEPER TESTS)

When to use: Logic-heavy functions, utilities, data processing, API integrations

Quick start:

# Verify test setup (see resources/vitest-setup.md if not configured)
npm test

# Write test for utility function
# test/utils/my-utility.test.js
import { describe, it, expect } from 'vitest';
import { myUtility } from '../../scripts/utils/my-utility.js';

describe('myUtility', () => {
  it('should transform input correctly', () => {
    expect(myUtility('input')).toBe('OUTPUT');
  });
});

# Run tests during development
npm run test:watch

Detailed guide: See resources/unit-testing.md

2. Browser Testing (THROWAWAY TESTS)

When to use: Block decoration, visual validation, DOM structure, responsive design

Organization:

  • Test scripts: test/tmp/test-{block}-browser.js
  • Test content: drafts/tmp/{block}.html
  • Screenshots: test/tmp/screenshots/
  • Both test/tmp/ and drafts/tmp/ should be gitignored

Quick start:

# Install Playwright
npm install --save-dev playwright
npx playwright install chromium

# Create test content
# drafts/tmp/my-block.html (copy head.html content, add test markup)

# Start dev server with drafts folder
aem up --html-folder drafts

# Create throwaway test script in test/tmp/
# test/tmp/test-my-block.js
import { chromium } from 'playwright';
import { mkdir } from 'fs/promises';

async function test() {
  await mkdir('./test/tmp/screenshots', { recursive: true });
  const browser = await chromium.launch({ headless: false });
  const page = await browser.newPage();

  await page.goto('http://localhost:3000/drafts/tmp/my-block');
  await page.waitForSelector('.my-block');
  await page.screenshot({
    path: './test/tmp/screenshots/my-block.png',
    fullPage: true
  });

  await browser.close();
}

test().catch(console.error);

# Run the test
node test/tmp/test-my-block.js

# Clean up when done (optional - gitignored either way)
rm -rf test/tmp/*

Detailed guide: See resources/browser-testing.md

3. Linting (ALWAYS)

When to use: Before every commit

Quick start:

# Run linting
npm run lint

# Auto-fix issues
npm run lint:fix

Linting MUST pass before opening a PR. Non-negotiable.

4. Performance Testing (AUTOMATED)

When to use: After pushing branch, automatically via GitHub checks

Quick start:

# Push branch
git push -u origin your-branch

# Create PR with test link
# PR description MUST include:
# Preview: https://branch--repo--owner.aem.page/path/to/test

# Monitor checks
gh pr checks --watch

Performance tests run automatically when you include a test link in your PR description.

Complete Workflow

For detailed step-by-step workflow, see resources/testing-workflow.md.

Quick summary:

During Development

  1. Write unit tests for new utilities
  2. Run npm run test:watch
  3. Manually test in browser

Before Committing

  1. Run npm test - all tests pass
  2. Run npm run lint - linting passes
  3. Write throwaway browser test in test/tmp/
  4. Create test content in drafts/tmp/
  5. Review screenshots from test/tmp/screenshots/
  6. Manual validation in browser

Before Opening PR

  1. Commit and push to feature branch (test/tmp/ won't be included)
  2. Verify branch preview loads
  3. Run gh checks
  4. Create PR with test link
  5. Monitor gh pr checks

After PR Review

  1. Address feedback
  2. Re-test
  3. Verify checks pass

Troubleshooting

For detailed troubleshooting guide, see resources/troubleshooting.md.

Common issues:

Tests fail

  • Read error message carefully
  • Run single test: npm test -- path/to/test.js
  • Fix code or update test

Linting fails

  • Run npm run lint:fix
  • Manually fix remaining issues

GitHub checks fail

  • Ensure PR has test link
  • Check gh pr checks for details
  • Fix performance issues if PSI fails

Browser tests fail

  • Verify dev server running: aem up --html-folder drafts
  • Check test content exists in drafts/tmp/
  • Verify URL uses /tmp/ path: http://localhost:3000/drafts/tmp/my-block
  • Add waits: await page.waitForSelector('.block')

Resources

  • Unit Testing: resources/unit-testing.md - Complete guide to writing and maintaining unit tests
  • Browser Testing: resources/browser-testing.md - Playwright/Puppeteer workflows and best practices
  • Testing Workflow: resources/testing-workflow.md - Step-by-step workflow from dev to PR
  • Troubleshooting: resources/troubleshooting.md - Solutions to common testing issues
  • Vitest Setup: resources/vitest-setup.md - One-time configuration guide

Integration with Building Blocks Skill

The building-blocks skill automatically invokes this skill after implementation.

Expected flow:

  1. Building blocks completes implementation
  2. Invokes testing-blocks skill
  3. This skill guides testing process
  4. Returns control when testing complete

Building blocks provides:

  • Block name being tested
  • Test content URL from CDD process
  • Any variants that need testing

This skill returns:

  • Confirmation all tests pass
  • Screenshots from browser testing (if requested)
  • Any issues discovered during testing

Summary

Testing in AEM Edge Delivery follows a pragmatic value-versus-cost approach:

Create keeper tests for:

  • Logic-heavy utilities
  • Data processing and transformations
  • API integrations
  • Shared libraries

Use throwaway browser tests for:

  • Block decoration validation
  • Visual appearance
  • DOM structure
  • Interactive behavior

Always do:

  • Run linting before commits
  • Test manually in browser
  • Verify GitHub checks pass
  • Include test links in PRs

Remember: The goal is confidence that your code works correctly, not achieving 100% test coverage. Write tests that provide value, and validate everything else in a browser.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.78%
按下载量换算1,851

Claude

33.21%
按下载量换算1,820

Cursor

19.97%
按下载量换算1,094

Gemini CLI

10.21%
按下载量换算560

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills