Skip to content

Commit fd0e4ba

Browse files
committed
fix: skip failing benchmarks
skip when deno has compatibility issues with packages: denoland/deno#27894
1 parent 67e555a commit fd0e4ba

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,11 @@ async function main() {
9797
for (const c of caseNames) {
9898
console.log('Loading "%s"', c);
9999

100-
await cases.importCase(c);
100+
try {
101+
await cases.importCase(c);
102+
} catch (e) {
103+
console.log('Error loading %s', c, e);
104+
}
101105
}
102106

103107
await benchmarks.runAllBenchmarks();

0 commit comments

Comments
 (0)