tessl install tessl/npm-jest-circus@29.7.0The next-gen flux-based test runner for Jest that provides test framework globals and event-driven test execution
Agent Success
Agent success rate when using this tile
82%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.91x
Baseline
Agent success rate without this tile
43%
Build a custom Jest matcher library that provides intuitive assertions for testing numeric ranges and boundary conditions.
Provides a matcher to check if a number falls within a specified range (inclusive).
The custom matcher should provide clear, descriptive error messages when assertions fail.
@generates
/**
* Extends Jest's expect with custom matchers for range validation.
* Must be called before using the custom matchers in tests.
*/
function setupCustomMatchers() {
// Implementation registers custom matcher(s) with expect
}
module.exports = { setupCustomMatchers };Provides the testing framework and expect.extend functionality for creating custom matchers.
@satisfied-by