Skip to content

Commit 13ef542

Browse files
committed
fix: consecutive wait-serial steps in scenario sometimes freeze #33
1 parent 88e9d32 commit 13ef542

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/APIClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@ export class APIClient {
215215
commands.push(this.simResume());
216216
this._running = true;
217217
}
218-
await Promise.all(commands);
219218
const pausePoint = new PausePoint(id, params);
220219
this.pausePoints.set(id, pausePoint);
220+
await Promise.all(commands);
221221
return pausePoint;
222222
}
223223

0 commit comments

Comments
 (0)