mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 15:17:33 +00:00
chore: increase login integration timeout
This commit is contained in:
6
.github/workflows/login-integration-test.yml
vendored
6
.github/workflows/login-integration-test.yml
vendored
@@ -39,15 +39,15 @@ jobs:
|
|||||||
echo "You will have the same environment as the pipeline check as well as some guidance on how to fix the errors."
|
echo "You will have the same environment as the pipeline check as well as some guidance on how to fix the errors."
|
||||||
- name: Show Compose Status
|
- name: Show Compose Status
|
||||||
if: failure()
|
if: failure()
|
||||||
run: docker compose --file .devcontainer/base/docker-compose.yaml --file .devcontainer/login-integration-ci/docker-compose.yaml ps
|
run: docker compose --file .devcontainer/base/docker-compose.yaml --file .devcontainer/login-integration/docker-compose.yaml ps
|
||||||
- name: Print Config
|
- name: Print Config
|
||||||
if: failure()
|
if: failure()
|
||||||
run: COMPOSE_BAKE=1 docker compose --file .devcontainer/base/docker-compose.yaml --file .devcontainer/login-integration-ci/docker-compose.yaml config login-integration
|
run: COMPOSE_BAKE=1 docker compose --file .devcontainer/base/docker-compose.yaml --file .devcontainer/login-integration/docker-compose.yaml config login-integration
|
||||||
env:
|
env:
|
||||||
LOGIN_TAG: ${{ inputs.login_build_image }}
|
LOGIN_TAG: ${{ inputs.login_build_image }}
|
||||||
- name: Show Container Logs
|
- name: Show Container Logs
|
||||||
if: failure()
|
if: failure()
|
||||||
run: docker compose --file .devcontainer/base/docker-compose.yaml --file .devcontainer/login-integration-ci/docker-compose.yaml logs --timestamps --no-color --tail 100 login-integration
|
run: docker compose --file .devcontainer/base/docker-compose.yaml --file .devcontainer/login-integration/docker-compose.yaml logs --timestamps --no-color --tail 100 login-integration
|
||||||
- name: Inspect All Failed Containers
|
- name: Inspect All Failed Containers
|
||||||
if: failure()
|
if: failure()
|
||||||
run: |
|
run: |
|
||||||
|
@@ -3,6 +3,7 @@ import { defineConfig } from "cypress";
|
|||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
reporter: "list",
|
reporter: "list",
|
||||||
video: true,
|
video: true,
|
||||||
|
pageLoadTimeout: 2 * 60_000,
|
||||||
e2e: {
|
e2e: {
|
||||||
baseUrl: process.env.LOGIN_BASE_URL || "http://localhost:3001/ui/v2/login",
|
baseUrl: process.env.LOGIN_BASE_URL || "http://localhost:3001/ui/v2/login",
|
||||||
specPattern: "integration/integration/**/*.cy.{js,jsx,ts,tsx}",
|
specPattern: "integration/integration/**/*.cy.{js,jsx,ts,tsx}",
|
||||||
|
Reference in New Issue
Block a user