Browse Source

Fix return value

Popov72 4 years ago
parent
commit
2b1a82beef
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/validation/validation.js

+ 1 - 1
tests/validation/validation.js

@@ -163,7 +163,7 @@ function runTest(index, done) {
     const excludedEngines = config.tests[index].excludedEngines;
     const webgl1 = !!window.disableWebGL2Support;
     if (Array.isArray(excludedEngines) && (webgl1 && excludedEngines.indexOf("webgl1") >= 0 || !webgl1 && excludedEngines.indexOf("webgl2") >= 0)) {
-        done(false);
+        done(true);
         return;
     }