- Preparing search index...
- The search index is not available
biorate
- suite(name, ...decorators): ClassDecorator
-
Parameters
-
name: string
-
Rest
...decorators: ClassDecorator[]
Rest
Returns ClassDecorator
- suite(...decorator): ClassDecorator
-
Parameters
-
Rest
...decorator: ClassDecorator[]
Rest
Returns ClassDecorator
- suite<TFunction>(target): void | TFunction
-
Type Parameters
-
TFunction extends Function
Returns void | TFunction
Callable with optional name, followed by decorators. Allows:
To condensed on a single line:
Please note the pit fall in the first case - the
@suite
must be the first decorator.