@zypin/test
v1.0.1
Published
A simplified, all-in-one testing framework.
Downloads
8
Maintainers
Readme
Zypin Testing Framework
All-in-one testing framework for Playwright, Selenium, and Cucumber BDD.
Quick Start
mkdir my-test-project && cd my-test-project
npx @zypin/test init
npm installNext Steps
# See available templates
npm run list
# Add a testing template
npm run scaffold playwright-basic
# Run tests
npm testFor Maintainers
Publishing New Versions
Check before publish:
npm run publish:checkRelease versions:
npm run release:patch # 1.0.0 → 1.0.1 (bug fixes)
npm run release:minor # 1.0.0 → 1.1.0 (new features)
npm run release:major # 1.0.0 → 2.0.0 (breaking changes)Push tags to GitHub:
git push --follow-tags