Skip to content

Commit

Permalink
fix: typo in agrs
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent committed Dec 17, 2023
1 parent edec18c commit d38c2d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/parallel.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ FAIL | 7 passed, 1 failed, 1 skipped // 2s
"actor": "I",
"name": "amOnPage",
"status": "success",
"agrs": [
"args": [
"https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST"
],
"startedAt": 1698760652610,
Expand All @@ -109,7 +109,7 @@ FAIL | 7 passed, 1 failed, 1 skipped // 2s
"actor": "I",
"name": "grabCurrentUrl",
"status": "success",
"agrs": [],
"args": [],
"startedAt": 1698760653098,
"startTime": 1698760653098,
"endTime": 1698760653099,
Expand Down
2 changes: 1 addition & 1 deletion lib/command/workers/runTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function initializeListeners() {
actor: step.actor,
name: step.name,
status: step.status,
agrs: step.args,
args: step.args,
startedAt: step.startedAt,
startTime: step.startTime,
endTime: step.endTime,
Expand Down

0 comments on commit d38c2d2

Please sign in to comment.