diff --git a/goofy-client/apps/goofy-e2e/src/support/cypress.util.ts b/goofy-client/apps/goofy-e2e/src/support/cypress.util.ts index 96a0734dc158dc4e59856f79e43e1fc25d9a3a1d..2da8ecb34cb41b43fa6eeef782f890a31978f4eb 100644 --- a/goofy-client/apps/goofy-e2e/src/support/cypress.util.ts +++ b/goofy-client/apps/goofy-e2e/src/support/cypress.util.ts @@ -61,7 +61,7 @@ export function contains(element: any, containing: string): void { } export function enterWith(element: any, value: any): void { - element.clear().type(value + '{enter}') + element.clear().type(value + '{enter}', {delay: 20}) } export function haveLength(element: any, length: number): void { diff --git a/goofy-client/package.json b/goofy-client/package.json index 6235e0f55445b95c1cac5508f4896c722c7a6038..56595217545b063679838adcca3d02a46fcfb806 100644 --- a/goofy-client/package.json +++ b/goofy-client/package.json @@ -33,8 +33,8 @@ "help": "nx help", "favicon": "real-favicon generate favicon/faviconDescription.json favicon/faviconData.json src/favicon", "cypress:run": "npx cypress run --project apps/goofy-e2e", - "cypress:run-main": "npx cypress run --project apps/goofy-e2e --config video=false integrationFolder=./src/integration/main-tests", - "cypress:run-ea": "npx cypress run --project apps/goofy-e2e --config video=false integrationFolder=./src/integration/einheitlicher-ansprechpartner", + "cypress:run-main": "npx cypress run --project apps/goofy-e2e --config video=false,integrationFolder=./src/integration/main-tests", + "cypress:run-ea": "npx cypress run --project apps/goofy-e2e --config video=false,integrationFolder=./src/integration/einheitlicher-ansprechpartner", "cypress:run-minimal": "npx cypress run --project apps/goofy-e2e --config video=false", "cypress:version": "npx cypress version", "cypress:install": "npx cypress install",