Skip to content

Commit da9ee5c

Browse files
authored
chore: Update test results repository to test-results-2 (calcom#25199)
1 parent 037cb8e commit da9ee5c

4 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/cleanup-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout GitHub Pages Branch
1515
uses: actions/checkout@v4
1616
with:
17-
repository: calcom/test-results
17+
repository: calcom/test-results-2
1818
ref: gh-pages
1919
token: ${{ secrets.GH_ACCESS_TOKEN }}
2020

.github/workflows/cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Checkout GitHub Pages Branch
2626
uses: actions/checkout@v2
2727
with:
28-
repository: calcom/test-results
28+
repository: calcom/test-results-2
2929
ref: gh-pages
3030
token: ${{ secrets.GH_ACCESS_TOKEN }}
3131
- name: Set Git User

.github/workflows/publish-report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Checkout GitHub Pages Branch
1717
uses: actions/checkout@v4
1818
with:
19-
repository: calcom/test-results
19+
repository: calcom/test-results-2
2020
ref: gh-pages
2121
token: ${{ secrets.GH_ACCESS_TOKEN }}
2222
- name: Set Git User
@@ -67,7 +67,7 @@ jobs:
6767
- name: Output Report URL as Workflow Annotation
6868
id: url
6969
run: |
70-
FULL_HTML_REPORT_URL=https://calcom.github.io/test-results/$HTML_REPORT_URL_PATH
70+
FULL_HTML_REPORT_URL=https://calcom.github.io/test-results-2/$HTML_REPORT_URL_PATH
7171
echo "::notice title=📋 Published Playwright Test Report::$FULL_HTML_REPORT_URL"
7272
echo "link=$FULL_HTML_REPORT_URL" >> $GITHUB_OUTPUT
7373
- name: Find Comment

apps/web/playwright/dynamic-booking-pages.e2e.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@ test("multiple duration selection updates event length correctly", async ({ page
118118

119119
await page.goto(`/${user.username}/multiple-duration`);
120120

121+
// Wait for time slots to be visible and clickable
122+
await page.locator('[data-testid="time"]').nth(0).waitFor({ state: "visible" });
123+
121124
await page.locator('[data-testid="multiple-choice-30mins"]').waitFor({ state: "visible" });
122125

123126
await test.step("verify default 30min duration is selected", async () => {
@@ -193,9 +196,9 @@ test.describe("Organization:", () => {
193196
});
194197
await expect(page.getByTestId("success-page")).toBeVisible();
195198
// All the teammates should be in the booking
196-
199+
197200
await expect(page.getByText(user1.name!, { exact: true })).toBeVisible();
198-
201+
199202
await expect(page.getByText(user2.name!, { exact: true })).toBeVisible();
200203
}
201204
);

0 commit comments

Comments
 (0)