Plan and run NitroCine unit, integration, concurrency, API, lint, build, and regression checks. Use when adding tests, simulating simultaneous bookings, verifying Redis behavior, preparing a release, or assessing whether a change is safe.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add HoangDuc1003/Cinema-booking --skill test-and-regression --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Test And Regression?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangduc1003-test-and-regression)More formats (shields.io, HTML) on the badges page.
---
name: test-and-regression
description: Plan and run NitroCine unit, integration, concurrency, API, lint, build, and regression checks. Use when adding tests, simulating simultaneous bookings, verifying Redis behavior, preparing a release, or assessing whether a change is safe.
---
# Test and Prevent Regressions
1. Derive tests from invariants and changed behavior, not implementation details.
2. Prefer deterministic unit tests for key builders, TTLs, seat normalization, pricing, and set operations.
3. Use integration tests for Mongo transactions, unique indexes, Redis locks, cache invalidation, and webhooks.
4. Launch concurrent booking attempts with a barrier so they contend at the same time; assert exactly one winner for the same seat.
5. Also test disjoint seats, expired holds, cancellation, duplicate callbacks, Redis-down fallback, and malformed input.
6. Isolate test databases and prefixes; never point destructive tests at production.
7. Run server tests and syntax checks, then client lint/build, then skill validation and a tracked-secret scan.
8. Report commands, pass/fail counts, skipped external tests, prerequisites, and remaining gaps honestly.
Keep simulations parameterized by environment variables and require an explicit opt-in before hitting a real API.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Practical guide to testing web applications with screen readers for comprehensive accessibility validation.
克劳德代码会话的正式评估框架,实施评估驱动开发(EDD)原则
Go测试模式包括表格驱动测试、子测试、基准测试、模糊测试和测试覆盖率。遵循TDD方法论,采用地道的Go实践。
Django测试策略,包括pytest-django、TDD方法论、factory_boy、模拟、覆盖率以及测试Django REST Framework API。
使用pytest、TDD方法、夹具、模拟、参数化和覆盖率要求的Python测试策略。