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
- class TestScopeA class that represents a test scope, containing a number of test cases.
- function describe(name, f)Creates a new test scope.