File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 51
51
run : php vendor/bin/testbench dusk:chrome-driver --detect
52
52
53
53
- name : Start Chrome Driver
54
- run : ./bin/chromedriver-linux &
54
+ run : ./bin/chromedriver-linux --port=9515 &
55
55
56
56
- name : Run Laravel Server
57
57
run : php vendor/bin/testbench serve --no-reload &
Original file line number Diff line number Diff line change @@ -43,7 +43,8 @@ protected function setUp(): void
43
43
protected function driver ()
44
44
{
45
45
return RemoteWebDriver::create (
46
- 'http://localhost:9515 ' , DesiredCapabilities::chrome ()
46
+ $ _ENV ['DUSK_DRIVER_URL ' ] ?? env ('DUSK_DRIVER_URL ' ) ?? 'http://localhost:9515 ' ,
47
+ DesiredCapabilities::chrome ()
47
48
);
48
49
}
49
50
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ abstract class DuskTestCase extends BaseTestCase
20
20
public static function prepare(): void
21
21
{
22
22
if (! static::runningInSail()) {
23
- static::startChromeDriver();
23
+ static::startChromeDriver(['--port=9515'] );
24
24
}
25
25
}
26
26
You can’t perform that action at this time.
0 commit comments