Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Jan 21, 2025
1 parent 73db612 commit 47772ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion integration-tests/js-compute/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const debugBuild = args.includes('--debug-build');
const filter = args.filter((arg) => !arg.startsWith('--'));
const bail = args.includes('--bail');
const skipSetup = args.includes('--skip-setup');
const skipTeardown = args.includes('--skip-setup');
const skipTeardown = args.includes('--skip-teardown');
const ci = args.includes('--ci');

async function $(...args) {
Expand Down Expand Up @@ -294,6 +294,7 @@ for (const chunk of chunks(Object.entries(tests), 100)) {
skipped: false,
};
} catch (error) {
console.error(test.downstream_request.pathname);
throw new Error(`${title} ${error.message}`, {
cause: error,
});
Expand Down Expand Up @@ -333,6 +334,7 @@ for (const chunk of chunks(Object.entries(tests), 100)) {
skipped: false,
};
} catch (error) {
console.error(test.downstream_request.pathname);
throw new Error(`${title} ${error.message}`);
}
},
Expand Down

0 comments on commit 47772ae

Please sign in to comment.