Skip to content

Commit

Permalink
Re-throw sitespeed.io errors to the queue.
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed Oct 15, 2024
1 parent 06f9588 commit 58be545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testrunner/src/testrunners/testrunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ async function runTest(job, workingDirectory, configFileName, logger) {
} catch (error) {
// if sitespeed.io exits with 0 zero, execa will throw an error
logger.error('Could not run sitespeed.io', error);
exitCode = error.exitCode;
throw error;
}
try {
const result = await readFile(
Expand Down

0 comments on commit 58be545

Please sign in to comment.