Skip to content

Commit 6e61647

Browse files
committed
feature: initial environment setup
1 parent 5a92f33 commit 6e61647

File tree

5 files changed

+219
-4
lines changed

5 files changed

+219
-4
lines changed

web/landing/composer.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@
3636
"symfony/web-profiler-bundle": "^6.4",
3737
"symfonycasts/tailwind-bundle": "~0.8.0",
3838
"norberttech/static-content-generator-bundle": "1.x-dev",
39-
"symfony/css-selector": "^6.4"
39+
"symfony/css-selector": "^6.4",
40+
"symfony/panther": "^2.1",
41+
"dbrekelmans/bdi": "^1.2"
4042
},
4143
"autoload": {
4244
"psr-4": {
@@ -58,11 +60,13 @@
5860
"post-install-cmd": [
5961
"@importmap:install",
6062
"@build:tailwind",
61-
"@tools:install"
63+
"@tools:install",
64+
"vendor/bin/bdi detect drivers"
6265
],
6366
"post-update-cmd": [
6467
"@importmap:install",
65-
"@build:tailwind"
68+
"@build:tailwind",
69+
"vendor/bin/bdi detect drivers"
6670
],
6771
"tools:install": [
6872
"composer install --working-dir=./tools/phpunit"
@@ -73,6 +77,9 @@
7377
"test": [
7478
"tools/phpunit/vendor/bin/phpunit"
7579
],
80+
"test:e2e": [
81+
"tools/phpunit/vendor/bin/phpunit --testsuite=e2e"
82+
],
7683
"assets:clear": "rm -rf public/assets",
7784
"importmap:install": "bin/console importmap:install",
7885
"build:assets": [

web/landing/composer.lock

Lines changed: 205 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/landing/drivers/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
chromedriver

web/landing/phpunit.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
<testsuite name="functional">
2020
<directory>tests/Flow/Website/Tests/Functional</directory>
2121
</testsuite>
22+
<testsuite name="e2e">
23+
<directory>tests/Flow/Website/Tests/E2E</directory>
24+
</testsuite>
2225
</testsuites>
2326
<source>
2427
<include>

web/landing/tests/Flow/Website/Tests/E2E/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)