Просмотр исходного кода

correct typo in conftest.py disable-dev-shm-usage (#2857)

kj4tmp 1 год назад
Родитель
Сommit
d5889c79db
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      nicegui/testing/conftest.py

+ 1 - 1
nicegui/testing/conftest.py

@@ -25,7 +25,7 @@ icecream.install()
 @pytest.fixture
 def chrome_options(chrome_options: webdriver.ChromeOptions) -> webdriver.ChromeOptions:
     """Configure the Chrome driver options."""
-    chrome_options.add_argument('disable-dev-shm-using')
+    chrome_options.add_argument('disable-dev-shm-usage')
     chrome_options.add_argument('no-sandbox')
     chrome_options.add_argument('headless')
     # check if we are running on GitHub Actions