1 Commits

Author SHA1 Message Date
Sebastian 932fc8d094 chore(deps): update dependency phpunit/phpunit to v13
Build Test / test (pull_request) Successful in 35s
JS Unit Tests / test (pull_request) Successful in 30s
PHP Integration Tests / Integration Tests (pull_request) Failing after 1m32s
PHP Unit Tests / test (pull_request) Successful in 1m49s
2026-07-28 03:04:39 +00:00
4 changed files with 447 additions and 209 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
"php": ">=8.3"
},
"require-dev": {
"phpunit/phpunit": "^12.0"
"phpunit/phpunit": "^13.0"
},
"autoload-dev": {
"psr-4": {
Generated
+442 -204
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -133,7 +133,7 @@ const saveChanges = async () => {
label="Current Password"
placeholder="············"
variant="outlined"
autocomplete="new-password"
autocomplete="off"
@click:append-inner="isCurrentPasswordVisible = !isCurrentPasswordVisible"
/>
</VCol>
@@ -150,7 +150,7 @@ const saveChanges = async () => {
label="New Password"
placeholder="············"
variant="outlined"
autocomplete="new-password"
autocomplete="suppress"
@click:append-inner="isNewPasswordVisible = !isNewPasswordVisible"
/>
</VCol>
@@ -164,7 +164,7 @@ const saveChanges = async () => {
label="Confirm New Password"
placeholder="············"
variant="outlined"
autocomplete="new-password"
autocomplete="suppress"
:error="confirmPassword.length > 0 && confirmPassword !== newPassword"
:error-messages="confirmPassword.length > 0 && confirmPassword !== newPassword ? ['Passwords do not match'] : []"
@click:append-inner="isConfirmPasswordVisible = !isConfirmPasswordVisible"
@@ -177,7 +177,7 @@ abstract class IntegrationTestCase extends TestCase
// process-level error handler after the in-process request.
$application = static::buildApplication();
try {
$response = $application->runHttpRequest($request);
$response = $application->handleHttp($request);
} finally {
$application->shutdown();
}