We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4b6dd8 commit 0de0783Copy full SHA for 0de0783
lib/command/workers/runTests.js
@@ -141,11 +141,19 @@ function initializeListeners() {
141
const _steps = [];
142
143
for (step of steps) {
144
+ const _args = [];
145
+
146
+ if (step.args) {
147
+ for (const arg of step.args) {
148
+ arg && arg.$_root ? _args.push(JSON.stringify(arg).slice(0, 300)) : _args.push(arg);
149
+ }
150
151
152
_steps.push({
153
actor: step.actor,
154
name: step.name,
155
status: step.status,
- args: step.args,
156
+ agrs: _args,
157
startedAt: step.startedAt,
158
startTime: step.startTime,
159
endTime: step.endTime,
0 commit comments