Skip to content

Commit 166ffcd

Browse files
committed
fix(ci): move chrome driver executable to path that dusk ChromeProcess expects it to be
1 parent d9f9052 commit 166ffcd

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.circleci/config.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -183,14 +183,11 @@ jobs:
183183
- run:
184184
name: Start Chrome Driver
185185
command: |
186-
chmod +x ./vendor/laravel/dusk/bin/chromedriver-linux64/chromedriver
187-
./vendor/laravel/dusk/bin/chromedriver-linux64/chromedriver
186+
mv ./vendor/laravel/dusk/bin/chromedriver-linux64/chromedriver ./vendor/laravel/dusk/bin/chromedriver-linux
187+
chmod +x ./vendor/laravel/dusk/bin/chromedriver-linux
188+
./vendor/laravel/dusk/bin/chromedriver-linux
188189
background: true
189190

190-
- run:
191-
name: Dectect Chrome Driver
192-
command: php artisan dusk:chrome-driver --detect
193-
194191
- run:
195192
name: Run Browser Tests
196193
command: php artisan dusk

0 commit comments

Comments
 (0)