Back to the catalog

testing-blocks

Guide for testing code changes in AEM Edge Delivery projects including blocks, scripts, and styles. Use this skill after making code changes

Open source Repository Open in the app JSON README (API)

About

Guide for testing code changes in AEM Edge Delivery projects including blocks, scripts, and styles. Use this skill after making code changes and before opening a pull request to validate functionality

Details

Kind
Agent skills
Topic
Developer tools
Publisher
adobe
Origin
majiayu
Category
ferramentas
Stars
45
Forks
59
Open pull requests
22
Last push
2026-09-07T14:53:59Z
Repository state
ativo
Language
JavaScript
License
Apache-2.0
Added
2026-09-02 18:18:27
Updated
2026-09-02 18:18:27
Origin id
adobe/helix-website/.claude/skills/testing-blocks@main

README

# Project Helix Website
[www.aem.live](https://www.aem.live)

[![codecov](https://codecov.io/gh/adobe/helix-website/branch/main/graph/badge.svg?token=If90y6KMqx)](https://codecov.io/gh/adobe/helix-website)
## Introduction
This repo is what powers the helix website.

## Developing
Install the Helix CLI:

    sudo npm install -g @adobe/aem-cli
    
Run it in this repo:

    aem up

While site preview is authenticated, run below command for local development:

    npx @adobe/aem-cli up --url https://main--helix-website--adobe.aem.live/

    
## Testing
### Install dependencies:

    npm install
### Run tests:

    npm test
### Watch tests:

    npm test:watch
    
This will run through all your tests, but then only run against any changed tests.


More