Skip to main content

Documentation Index

Fetch the complete documentation index at: https://momentic.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Runs a JavaScript snippet. The return value can be stored with saveAs. The simplified form takes the code as a single string.

Parameters

ParameterTypeRequiredDescription
codestringYesJavaScript to run.
timeoutnumberNoExecution timeout in milliseconds.
saveAsstringNoVariable to store this step’s return value on env.<name>.
retriesnumberNoTimes to retry the step on failure before failing the test.
skippedbooleanNoSkip this step at execution time.
commentstringNoFree-form annotation kept with the step.

Shorthand

Code as a single string.
- javascript: "return env.COUNT + 1"

Examples

- javascript:
    code: "return Date.now()"
    saveAs: NOW # return value is available as {{ env.NOW }}