File tree Expand file tree Collapse file tree 3 files changed +23
-2
lines changed
Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ MAIL_FROM_NAME="Pterodactyl Panel"
2020RECAPTCHA_ENABLED=false
2121
2222DB_CONNECTION=testing
23- TESTING_DB_HOST=services.pterodactyl.local
23+ TESTING_DB_HOST=192.168.1.202
2424TESTING_DB_DATABASE=panel_test
2525TESTING_DB_USERNAME=panel_test
2626TESTING_DB_PASSWORD=Test1234
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <phpunit backupGlobals =" false"
3+ backupStaticAttributes =" false"
4+ bootstrap =" vendor/autoload.php"
5+ colors =" true"
6+ convertErrorsToExceptions =" true"
7+ convertNoticesToExceptions =" true"
8+ convertWarningsToExceptions =" true"
9+ processIsolation =" false"
10+ stopOnFailure =" false" >
11+ <testsuites >
12+ <testsuite name =" Browser Test Suite" >
13+ <directory suffix =" Test.php" >./tests/Browser</directory >
14+ </testsuite >
15+ </testsuites >
16+ <filter >
17+ <whitelist processUncoveredFilesFromWhitelist =" true" >
18+ <directory suffix =" .php" >./app</directory >
19+ </whitelist >
20+ </filter >
21+ </phpunit >
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ protected function driver()
4545 ]);
4646
4747 return RemoteWebDriver::create (
48- 'http://services .pterodactyl.local:4444/wd/hub ' , DesiredCapabilities::chrome ()->setCapability (
48+ 'http://host .pterodactyl.local:4444/wd/hub ' , DesiredCapabilities::chrome ()->setCapability (
4949 ChromeOptions::CAPABILITY , $ options
5050 )
5151 );
You can’t perform that action at this time.
0 commit comments