mono/packages/xblox/tests/fixtures/multi-root-wait.json
2026-04-07 19:41:32 +02:00

19 lines
333 B
JSON

{
"version": 1,
"context": { "steps": [] },
"roots": [
{
"kind": "runScript",
"method": "this.steps = this.steps || []; this.steps.push('a'); return 'a';"
},
{
"kind": "wait",
"ms": 5000
},
{
"kind": "runScript",
"method": "this.steps.push('b'); return 'b';"
}
]
}