vitest/max-nested-describe
March 1, 2026 ยท View on GitHub
๐ Require describe block to be less than set max value or default value.
โ ๏ธ This rule warns in the ๐ all config.
Rule Details
Examples of incorrect code for this rule with max: 1:
describe('outer', () => {
describe('inner', () => {
// ...
})
})
Examples of correct code for this rule:
describe('inner', () => {
// ...
})
Options
| Name | Description | Type |
|---|---|---|
max | Maximum allowed nesting depth for describe blocks. | Number |
Default:
5
Maximum number of nested describe blocks.
{
max: number
}