integration-tests

Run integration tests that require a local npm registry by starting pnpm local-npm:start in a background subprocess, executing the build/reset/publish/test pipeline in the main process, then cleanly shutting down the registry process and returning results.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "integration-tests" with this command: npx skills add openai/openai-agents-js/openai-openai-agents-js-integration-tests

Integration Tests

Overview

Run integration tests that require a local npm registry by starting pnpm local-npm:start in a background subprocess, executing the build/reset/publish/test pipeline in the main process, then cleanly shutting down the registry process and returning results.

Workflow

  1. Start the local registry (subprocess)
  • Start a background process with pnpm local-npm:start and keep its session id so it can be stopped later.

  • Wait until the registry is ready (look for a Verdaccio listen message or the default http://localhost:4873 line). If no explicit ready line appears, wait a few seconds and proceed.

  • If the port is already in use, note that an existing registry may be running and proceed only if it matches the expected local registry; otherwise stop it and restart.

  1. Run the main pipeline (main process)

Run this exact sequence in the main process and capture the output:

pnpm i && pnpm build:ci && pnpm local-npm:reset && pnpm local-npm:publish && pnpm test:integration

Use pnpm build:ci here so the skill validates the same serialized build path that GitHub Actions now uses, while still running the normal prebuild and postbuild lifecycle steps.

Return the full success/failure outcome and a concise summary of the results.

Always capture the stdout/stderr from pnpm test:integration and include it in the final response (trim obvious noise if extremely long) inside a fenced code block.

Do not use watch mode.

If pnpm local-npm:publish fails

Troubleshoot using integration-tests/README.md , which lists the canonical recovery steps. If time is short, prioritize the fixes in the order given there and surface the exact error text in your response.

  1. Clean up the registry process
  • Send Ctrl+C to the registry subprocess and wait for it to exit.

  • If it does not exit, terminate it by PID and confirm the port is free before finishing.

Output expectations

  • Always include the integration test results in the response.

  • If any step fails, include the failing command, the error output summary, and the next recommended action.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

pnpm-upgrade

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

changeset-validation

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

openai-knowledge

No summary provided by upstream source.

Repository SourceNeeds Review
-126
openai