1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-19 04:41:53 +02:00

e107 installation updated for PHP8.1. Bootstrap5 is now the default theme. Acceptance test updated.

This commit is contained in:
Cameron
2021-11-29 13:45:02 -08:00
parent afc0489e8c
commit 6f309bb326
7 changed files with 304 additions and 205 deletions

473
e107_tests/composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -23,7 +23,7 @@ class InstallCest
public function installDefault(AcceptanceTester $I)
{
$I->wantTo("Install e107 with default settings");
$I->wantTo("Install e107 with default settings"); // bootstrap5.
$this->installe107($I);
$this->checkAdminButtonWelcomeMessage($I);
$this->testNoUpdatesRequired($I);
@@ -46,16 +46,15 @@ class InstallCest
$I->see("Blue");
}
/*
public function installVoux(AcceptanceTester $I)
{
$I->wantTo("Install e107 with Voux theme and db starting with digits");
$this->installe107($I, array('sitetheme'=>'voux', 'db'=>'123xyz'));
$I->wantTo("Install e107 with Voux theme");
$this->installe107($I, array('sitetheme'=>'voux'));
$this->checkAdminButtonWelcomeMessage($I);
$this->testNoUpdatesRequired($I);
$this->checkTinyMceIsInstalled($I);
}*/
}
private function installe107(AcceptanceTester $I, $params = array())
{