Commit 7c904cda authored by Tobias Munk's avatar Tobias Munk

Merge branch 'feature/php-8.2' of git.hrzg.de:dmstr/phd5-app into feature/php-8.2

parents 53c97f28 f2be2ef9
Pipeline #84213 failed with stage
in 52 seconds
......@@ -165,8 +165,8 @@ $common = [
'backend.browserSupport' => [
'Chrome' => 87,
'Edge' => false,
'Safari' => false,
'MobileSafari' => false,
'Safari' => 14,
'MobileSafari' => 14,
'Firefox' => 88,
'Opera' => false,
'Vivaldi' => false,
......@@ -286,7 +286,7 @@ $common = [
'ssl' => getenv('FTP_BUCKET_SSL') ?: 0,
'passive' => 1,
'timeout' => 10,
'transferMode' => FTP_BINARY,
'transferMode' => defined("FTP_BINARY") ? FTP_BINARY : null,
'enableTimestampsOnUnixListings' => true
],
'i18n' => [
......
......@@ -23,6 +23,6 @@ class LanguagesEnCest
$I->seeElement('.site-error');
$I->amOnPage('/en-us');
$I->see('Not Found');
$I->seeElement('.site-error');
}
}
......@@ -24,7 +24,7 @@ class SignupCest
$I->amOnPage('/user/login');
$I->dontSeeLink("Don't have an account? Sign up!", '/en/user/register');
$I->amOnPage('/user/register');
$I->see('Not Found (#404)');
$I->seeElement('.site-error');
}
}
}
......@@ -12,7 +12,7 @@ class UserCreateCest
public function tryToTest(E2eTester $I)
{
$faker = Factory::create();
$username = $faker->userName;
$username = $faker->userName();
$I->wantTo('ensure that User module works');
......@@ -22,9 +22,9 @@ class UserCreateCest
$I->amGoingTo('try to view and create snippets');
$I->amOnPage('/user/admin/create');
$I->fillField('#user-email', $faker->email);
$I->fillField('#user-email', $faker->email());
$I->fillField('#user-username', $username);
$I->fillField('#user-password', $faker->password);
$I->fillField('#user-password', $faker->password());
$I->click('button[type="submit"]');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment