Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 876 Bytes

File metadata and controls

47 lines (32 loc) · 876 Bytes

vitest/max-nested-describe

📝 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
}