Explorar el Código

travis chrome

jqh hace 5 años
padre
commit
2790e1a16f
Se han modificado 2 ficheros con 4 adiciones y 3 borrados
  1. 1 1
      .travis.yml
  2. 3 2
      tests/ChromeProcess.php

+ 1 - 1
.travis.yml

@@ -8,7 +8,7 @@ php:
   - 7.3
 
 addons:
-  chrome: 81
+  chrome: beta
 
 matrix:
   fast_finish: true

+ 3 - 2
tests/ChromeProcess.php

@@ -14,8 +14,9 @@ class ChromeProcess extends BaseChromeProcess
             $this->driver = realpath(__DIR__.'/resources/drivers/chromedriver-win.exe');
         } elseif ($this->onMac()) {
             $this->driver = realpath(__DIR__.'/resources/drivers/chromedriver-mac');
-        } else {
-            $this->driver = realpath(__DIR__.'/resources/drivers/chromedriver-linux');
         }
+        //else {
+        //    $this->driver = realpath(__DIR__.'/resources/drivers/chromedriver-linux');
+        //}
     }
 }