test
Run all tests. Codex equivalent of the Claude /test command.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run all tests. Codex equivalent of the Claude /test command.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Scaffold a new ADR in `docs/decisions/`. Codex equivalent of the Claude /adr-new command.
Enumerate the active Spring Voyage `area:*` taxonomy and the owning umbrella for each. Codex equivalent of the Claude /areas command.
Build all .NET projects and the Next.js portal. Codex equivalent of the Claude /build command.
Format the codebase. If $ARGUMENTS is provided, format only that target. Codex equivalent of the Claude /format command.
Run every lint-class CI gate locally. Codex equivalent of the Claude /lint command.
Run the OpenAPI contract drift check locally — mirrors CI's `openapi-drift` job. Codex equivalent of the Claude /openapi-diff command.
| name | test |
| description | Run all tests. Codex equivalent of the Claude /test command. |
Codex equivalent of the Claude /test command. Follow the same project workflow, using any provided user request as the command arguments.
Run all tests.
dotnet test --solution SpringVoyage.slnx --no-restore --no-build --configuration Release
This matches the CI invocation in .github/workflows/ci.yml. Requires a prior dotnet build --configuration Release.
Pitfalls to avoid:
dotnet test SpringVoyage.slnx) warns and exits 0 without running tests.--nologo triggers help output and reports "Zero tests ran" with exit 1.bin//obj/ first — --no-build will happily run against stale output:
find src tests -type d \( -name bin -o -name obj \) -exec rm -rf {} +
All tests must pass. If tests fail, investigate and fix before committing.