Skip to content

Commit

Permalink
Debug travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Strilanc committed Jun 8, 2018
1 parent 5c9150e commit a5c5789
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/TestUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,8 @@ function isWebGLSupportPresent() {
if (__onlyPartialWebGLSupportPresent) {
Config.IGNORED_WEBGL_INFO_TERMS.push(term);
}
console.log('__onlyPartialWebGLSupportPresent', __onlyPartialWebGLSupportPresent);
console.log(Config.IGNORED_WEBGL_INFO_TERMS);
}
}
}
Expand All @@ -337,7 +339,7 @@ function isWebGLSupportPresent() {
* @returns {!boolean|undefined}
*/
function isOnlyPartialWebGLSupportPresent() {
return !isWebGLSupportPresent() && __onlyPartialWebGLSupportPresent;
return isWebGLSupportPresent() && __onlyPartialWebGLSupportPresent;
}

let promiseImageDataFromSrc = src => {
Expand Down

0 comments on commit a5c5789

Please sign in to comment.