testing
Installation
SKILL.md
Testing – Contentstack DataSync Boilerplate
When to use
- Checking changes before merge without a dedicated test suite
- Deciding how to handle API tokens, webhooks, or local tunnels
Instructions
- Current state: There is no
npm testscript or standard test directory. Rely onnpx eslint ., manual runs (npm start/npm run continue) against non-production stacks, and CI security scans on PRs. - Secrets: Never commit real
apiKey, delivery tokens, or checkpoint files with live tokens. Use environment-appropriateconfig/*.jsor secure injection per team practice. - Local integration: Webhooks require a public URL (e.g. ngrok) and Contentstack webhook configuration—see root
README.mdprerequisites. - Adding tests: If introducing a runner, add scripts to
package.jsonand document them inAGENTS.mdanddev-workflow/SKILL.md.