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 0adb819 commit 2979ce0Copy full SHA for 2979ce0
src/common/runtime/standalone.ts
@@ -223,6 +223,12 @@ function makeCaseHTML(t: TestTreeLeaf): VisualizedSubtree {
223
224
if (caseResult.logs) {
225
caselogs.empty();
226
+ // Show exceptions at the top since they are often unexpected can point out an error in the test itself vs the WebGPU implementation.
227
+ caseResult.logs
228
+ .filter(l => l.name === 'EXCEPTION')
229
+ .forEach(l => {
230
+ $('<pre>').addClass('testcaselogtext').text(l.toJSON()).appendTo(caselogs);
231
+ });
232
for (const l of caseResult.logs) {
233
const caselog = $('<div>').addClass('testcaselog').appendTo(caselogs);
234
$('<button>')
0 commit comments