e.g. if you're just delaying your workflow for 1 second, use: ```javascript await new Promise(r => setTimeout(r, 1000)); ``` if you're using multiple, short delays, that may also be more appropriate, since you'll incur invocations on each resumption of the workflow.