feat(in-progress): Strapi REST API testing skills#6
Draft
innerdvations wants to merge 2 commits into
Draft
Conversation
Add a parent strapi-testing router and strapi-rest-api-testing skill with bootstrap templates, test DB safety checks, and _health smoke test gate.
Drop duplicated strapi.js, database.js, and package.json snippet templates. Point bootstrap at docs.strapi.io/cms/testing; keep only skill-owned smoke test, verify-test-env, and auth/permission helpers.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
strapi-testing— parent router skill that classifies test requests (REST API integration vs unit vs GraphQL vs out-of-scope) and explicitly excludes the Strapi monorepo.strapi-rest-api-testing— opinionated workflow for Strapi 5 application projects: Jest + Supertest + isolated test DB, with bootstrap gates and bundled templates.GET /_healthsmoke test (tests/app.test.js) that must pass before writing endpoint tests.What's included
skills/in-progress/strapi-testing/skills/in-progress/strapi-rest-api-testing/SKILL.mdskills/in-progress/strapi-rest-api-testing/REFERENCE.mdtemplates/database.js,strapi.js,app.test.js, auth/permissions helpersscripts/verify-test-env.jsNODE_ENV=test, test config exists, no prod DB namesTest plan
yarn test tests/app.test.jsgreenskills/cms/when stable