Skip to content

Commit

Permalink
Merge branch 'develop' into fix/list-anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
m8vago committed Feb 28, 2024
2 parents 27bce84 + 2d22943 commit c01c584
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions docker-compose.http-only.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ services:
- RECAPTCHA_SECRET_KEY=${RECAPTCHA_SECRET_KEY}
- RECAPTCHA_SITE_KEY=${RECAPTCHA_SITE_KEY}
- QA_OPT_OUT=${QA_OPT_OUT:-false}
- ENCRYPTION_SECRET_KEY=${ENCRYPTION_SECRET_KEY}
depends_on:
crux-postgres:
condition: service_healthy
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ services:
- RECAPTCHA_SECRET_KEY=${RECAPTCHA_SECRET_KEY}
- RECAPTCHA_SITE_KEY=${RECAPTCHA_SITE_KEY}
- QA_OPT_OUT=${QA_OPT_OUT:-false}
- ENCRYPTION_SECRET_KEY=${ENCRYPTION_SECRET_KEY}
depends_on:
crux-postgres:
condition: service_healthy
Expand Down
2 changes: 2 additions & 0 deletions web/crux-ui/e2e/utils/node-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export const installDagent = async (page: Page) => {

await page.locator('button:has-text("Add")').click()

await page.waitForSelector('h4:text-is("New node")')

Check failure on line 13 in web/crux-ui/e2e/utils/node-helper.ts

View workflow job for this annotation

GitHub Actions / e2e

[global-setup] › utils/global.setup.spec.ts:21:5 › global setup

1) [global-setup] › utils/global.setup.spec.ts:21:5 › global setup ─────────────────────────────── TimeoutError: page.waitForSelector: Timeout 30000ms exceeded. =========================== logs =========================== waiting for locator('h4:text-is("New node")') to be visible ============================================================ at utils/node-helper.ts:13 11 | await page.locator('button:has-text("Add")').click() 12 | > 13 | await page.waitForSelector('h4:text-is("New node")') | ^ 14 | 15 | await page.locator('input[name=name] >> visible=true').fill(DAGENT_NODE) 16 | at installDagent (/__w/dyrectorio/dyrectorio/web/crux-ui/e2e/utils/node-helper.ts:13:14) at /__w/dyrectorio/dyrectorio/web/crux-ui/e2e/utils/global.setup.spec.ts:64:3

await page.locator('input[name=name] >> visible=true').fill(DAGENT_NODE)

await page.locator('button:has-text("Save")').click()
Expand Down

0 comments on commit c01c584

Please sign in to comment.