-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added cypress setup to serve tests and run in headless mode * Fixed configuratio flags * Added rules to skip videos and screenshots * Added rule to skip tests downloads * Fixed /dist url and build integrated before serving * Update maven on tasks commands * Add docker container config
- Loading branch information
1 parent
4e6c678
commit 8472a55
Showing
7 changed files
with
240 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"integrationFolder": "cypress/integration", | ||
"supportFile": "cypress/support/index.ts", | ||
"videosFolder": "cypress/videos", | ||
"screenshotsFolder": "cypress/screenshots", | ||
"pluginsFile": "cypress/plugins/index.ts", | ||
"fixturesFolder": "cypress/fixtures", | ||
"baseUrl": "http://localhost:9393/dashboard/index.html", | ||
"chromeWebSecurity": false, | ||
"defaultCommandTimeout": 60000, | ||
"pageLoadTimeout": 60000, | ||
"viewportWidth": 1400, | ||
"viewportHeight": 800 | ||
} |
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,31 @@ | ||
version: '3' | ||
|
||
services: | ||
|
||
rabbitmq-server: | ||
image: rabbitmq:management | ||
ports: | ||
- "5672:5672" | ||
- "15672:15672" | ||
|
||
skipper-server: | ||
image: springcloud/spring-cloud-skipper-server:2.9.0-SNAPSHOT | ||
ports: | ||
- "7577:7577" | ||
- "8888:8888" | ||
- "8889:8889" | ||
- "20000-20099:20000-20099" | ||
environment: | ||
- SPRING_CLOUD_SKIPPER_SERVER_PLATFORM_LOCAL_ACCOUNTS_DEFAULT_PORTRANGE_LOW=20000 | ||
- SPRING_CLOUD_SKIPPER_SERVER_PLATFORM_LOCAL_ACCOUNTS_DEFAULT_PORTRANGE_HIGH=20100 | ||
|
||
dataflow-server: | ||
image: springcloud/spring-cloud-dataflow-server:2.10.0-SNAPSHOT | ||
ports: | ||
- "9393:9393" | ||
- "20100-20199:20100-20199" | ||
environment: | ||
- MANAGEMENT_ENDPOINTS_WEB_EXPOSURE_INCLUDE=* | ||
- SPRING_CLOUD_DATAFLOW_FEATURES_SCHEDULES_ENABLED=true | ||
- SPRING_CLOUD_SKIPPER_CLIENT_SERVER_URI=http://skipper-server:7577/api | ||
- SPRING_CLOUD_DATAFLOW_APPLICATIONPROPERTIES_STREAM_SPRING_RABBITMQ_ADDRESSES=rabbitmq-server:5672 |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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