Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
Remove WebGLInfo log message b/c it fails on Firefox (#1703)
Browse files Browse the repository at this point in the history
  • Loading branch information
ninok committed Jul 21, 2020
1 parent c299f96 commit d5d2cf0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion @here/harp-test-utils/lib/rendering/RenderingTestHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,4 +241,8 @@ export function getWebGlInfo() {
return result;
}

logger.log("WebGlInfo", getWebGlInfo());
try {
logger.log("WebGlInfo", getWebGlInfo());
} catch {
logger.error("WebGL is not supported on this machine");
}

0 comments on commit d5d2cf0

Please sign in to comment.