소스 검색

travis run dusk

jqh 5 년 전
부모
커밋
4116009b52
1개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. 5 4
      tests/ChromeProcess.php

+ 5 - 4
tests/ChromeProcess.php

@@ -12,10 +12,11 @@ class ChromeProcess extends BaseChromeProcess
 
         if ($this->onWindows()) {
             $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');
         }
+        //elseif ($this->onMac()) {
+        //    $this->driver = realpath(__DIR__.'/resources/drivers/chromedriver-mac');
+        //} else {
+        //    $this->driver = realpath(__DIR__.'/resources/drivers/chromedriver-linux');
+        //}
     }
 }