Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
derekxu16 committed Aug 29, 2024
1 parent 45df1cc commit d48e427
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion dwds/test/fixtures/context.dart
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,11 @@ class TestContext {
try {
_chromeDriver = await Process.start(
'chromedriver$_exeExt',
['--port=$chromeDriverPort', '--url-base=$chromeDriverUrlBase'],
[
'--port=$chromeDriverPort',
'--url-base=$chromeDriverUrlBase',
'--disable-gpu',
],
);
// On windows this takes a while to boot up, wait for the first line
// of stdout as a signal that it is ready.
Expand Down

0 comments on commit d48e427

Please sign in to comment.