-
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.
[FEATURE] changed logic for be login and prepare acceptance tests for…
… execution and ensure they run successfully Related: https://projekte.in2code.de/issues/69945
- Loading branch information
1 parent
95993d5
commit f0cd350
Showing
7 changed files
with
173 additions
and
24 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
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,22 @@ | ||
<?php | ||
|
||
namespace In2code\Lux\Tests\Utility; | ||
|
||
class ViewPortUtility | ||
{ | ||
const MOBILE = 576; | ||
const TABLET = 768; | ||
const DESKTOP = 1400; | ||
|
||
const HEIGHT_MOBILE = 852; | ||
const HEIGHT_TABLET = 1024; | ||
const HEIGHT_DESKTOP = 1080; | ||
const WIDTH_MOBILE = 393; | ||
const WIDTH_TABLET = 768; | ||
const WIDTH_DESKTOP = 1400; | ||
const MAX_HEIGHT = 14999; | ||
|
||
const HEADER_OFFSET_Y_DESKTOP = -115; | ||
const HEADER_OFFSET_Y_TABLET = -115; | ||
const HEADER_OFFSET_Y_MOBILE = -63; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
namespace: In2code\Lux\Tests | ||
params: | ||
- env | ||
paths: | ||
tests: Tests/Acceptance | ||
output: Tests/Acceptance/_output | ||
|