Docs (4.0.0)
class TestScope method

addScope

Adds a nested scope to this scope (used by describe()).

addScope(name: string, f: (scope: TestScope) => void, parallel?: boolean, exclusive?: boolean): void

Notes

  • Use the describe() function within another scope callback instead of calling this method directly.

Related