roblox-testing
Installation
SKILL.md
When to Load
Load when writing unit/integration tests, mocking Roblox services, setting up CI/CD with Lune, or refactoring code for testability via dependency injection. Hand off to roblox-luau-core for syntax, roblox-luau-types for type design, roblox-luau-patterns for architecture, roblox-security for validation.
Quick Reference
TestEZ (BDD framework)
- Install:
[dev-dependencies] TestEZ = "roblox/testez@0.4.1"inwally.toml - Files:
*.spec.luau, co-located with source - Blocks:
describe→it→beforeEach/afterEach - Assertions:
expect(x).to.equal(y),.to.be.near(n, ε),.to.throw()