summaryrefslogtreecommitdiffstats
path: root/devtools/client/bin/devtools-node-test-runner.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/bin/devtools-node-test-runner.js')
-rw-r--r--devtools/client/bin/devtools-node-test-runner.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/client/bin/devtools-node-test-runner.js b/devtools/client/bin/devtools-node-test-runner.js
index e347ee5855..087664b957 100644
--- a/devtools/client/bin/devtools-node-test-runner.js
+++ b/devtools/client/bin/devtools-node-test-runner.js
@@ -104,7 +104,7 @@ function getErrors(suite, out, err, testPath) {
const JEST_ERROR_SUMMARY_REGEX = /\s●\s/;
-function getJestErrors(out, err) {
+function getJestErrors(out) {
// The string out has extra content before the JSON object starts.
const jestJsonOut = out.substring(out.indexOf("{"), out.lastIndexOf("}") + 1);
const results = JSON.parse(jestJsonOut);