Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
path | string | Yes | Relative path to the module file (or its id). |
inputs | Record<string, value> | No | Values bound to the module’s parameters (see below). |
saveAs | string | No | Variable to store this step’s return value on env.<name>. |
retries | number | No | Times to retry the step on failure before failing the test. |
skipped | boolean | No | Skip this step at execution time. |
inputs is one of:
- A shorthand string. It is evaluated as a JavaScript expression (e.g.
env.QA_EMAIL), not mustache templating. { string: ... }: a literal string.{ javascript: ... }: the script’s return value is bound to the parameter.