Skip to content

Commit bd95236

Browse files
committed
Merge branch '4.x' into 5.x
2 parents d2b19f9 + b6e76d3 commit bd95236

33 files changed

Lines changed: 170 additions & 41 deletions

File tree

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
"require-dev": {
4141
"ext-pcntl": "*",
4242
"ext-posix": "*",
43-
"livewire/livewire": "^3.7.13",
44-
"nunomaduro/collision": "^8.9.2",
43+
"livewire/livewire": "^3.7.15",
44+
"nunomaduro/collision": "^8.9.3",
4545
"orchestra/testbench": "^10.11.0",
4646
"pestphp/pest-dev-tools": "^5.0.0",
4747
"pestphp/pest-plugin-laravel": "^5.0.0",

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"dependencies": {
3-
"playwright": "^1.54.1"
3+
"playwright": "^1.59.1"
44
}
55
}

src/Playwright/Servers/PlaywrightNpmServer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ final class PlaywrightNpmServer implements PlaywrightServer
2121
/**
2222
* The playwright version required to run this server.
2323
*/
24-
private const string PLAYWRIGHT_VERSION = '1.54.1';
24+
private const string PLAYWRIGHT_VERSION = '1.59.1';
2525

2626
/**
2727
* The underlying process instance, if any.

src/Support/BrowserTestIdentifier.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ private static function usesFunction(Closure $closure, string $functionName): bo
8181

8282
for ($i = 0; $i < $tokensCount - 1; $i++) {
8383
if (is_array($tokens[$i]) &&
84-
$tokens[$i][0] === T_STRING &&
85-
mb_strtolower($tokens[$i][1]) === $functionName &&
84+
in_array($tokens[$i][0], [T_STRING, T_NAME_FULLY_QUALIFIED], true) &&
85+
mb_strtolower(mb_ltrim($tokens[$i][1], '\\')) === $functionName &&
8686
$tokens[$i + 1] === '(') {
8787
if ($functionName === 'debug') {
8888
return true;

tests/.pest/snapshots/Browser/Visit/SingleUrl/it_may_visit_a_page_in_light_dark_mode_with_data_set___Pest_Browser_Enums_ColorScheme_Enum__DARK___dark____.snap

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

tests/.pest/snapshots/Browser/Visit/SingleUrl/it_may_visit_a_page_in_light_dark_mode_with_data_set___Pest_Browser_Enums_ColorScheme_Enum__LIGHT___light____.snap

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

tests/.pest/snapshots/Browser/Visit/SingleUrl/it_may_visit_a_page_with_data_set____desktop___.snap

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

tests/.pest/snapshots/Browser/Visit/SingleUrl/it_may_visit_a_page_with_data_set____galaxyNote20___.snap

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

tests/.pest/snapshots/Browser/Visit/SingleUrl/it_may_visit_a_page_with_data_set____galaxyS22___.snap

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)