-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
314 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,5 @@ var/ | |
/config/ | ||
/.phpunit.cache/ | ||
/.env.local | ||
/Tests/Acceptance/_output/* | ||
/Tests/Acceptance/_support/_generated/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
FROM in2code/php-dev:8.2-fpm | ||
|
||
COPY zz_xdebug.ini /usr/local/etc/php/conf.d/zz_xdebug.ini | ||
|
||
USER root | ||
|
||
# Install CURL extension | ||
RUN apt-get update && apt-get install -y \ | ||
libcurl4-openssl-dev \ | ||
&& docker-php-ext-install curl \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
USER www-data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
99 changes: 0 additions & 99 deletions
99
Resources/Public/JavaScript/Static/CkEditorPlugins/luxEmail4LinkOld/dialogs/dialog.js
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
.../Public/JavaScript/Static/CkEditorPlugins/luxEmail4LinkOld/icons/email4link.svg
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
Resources/Public/JavaScript/Static/CkEditorPlugins/luxEmail4LinkOld/lang/de.js
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
Resources/Public/JavaScript/Static/CkEditorPlugins/luxEmail4LinkOld/lang/en.js
This file was deleted.
Oops, something went wrong.
72 changes: 0 additions & 72 deletions
72
Resources/Public/JavaScript/Static/CkEditorPlugins/luxEmail4LinkOld/plugin.js
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
namespace In2code\Lux\Tests; | ||
|
||
use In2code\Lux\Tests\_generated\AcceptanceTesterActions; | ||
|
||
/** | ||
* Inherited Methods | ||
* @method void wantToTest($text) | ||
* @method void wantTo($text) | ||
* @method void execute($callable) | ||
* @method void expectTo($prediction) | ||
* @method void expect($prediction) | ||
* @method void amGoingTo($argumentation) | ||
* @method void am($role) | ||
* @method void lookForwardTo($achieveValue) | ||
* @method void comment($description) | ||
* @method void pause() | ||
* | ||
* @SuppressWarnings(PHPMD) | ||
*/ | ||
class AcceptanceTester extends \Codeception\Actor | ||
{ | ||
use AcceptanceTesterActions; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace In2code\Lux\Tests\Helper; | ||
|
||
class BackendTester extends \Codeception\Module | ||
{ | ||
public function loginToBackend($I, $username = 'akellner', $password = 'akellner') | ||
{ | ||
$I->amOnPage('/typo3/'); | ||
$I->fillField('#t3-username', $username); | ||
$I->fillField('#t3-password', $password); | ||
$I->click('Login'); | ||
$I->waitForElement('#typo3-cms-backend-backend-toolbaritems-systeminformationtoolbaritem'); | ||
} | ||
} |
Oops, something went wrong.