Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/production-synthetic-monitoring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
"Production Synthetic Monitoring failed.",
"",
`- Run: ${runUrl}`,
`- Run ID: production-${context.runId}-${context.runAttempt}`,
`- Run ID: production-${context.runId}-${process.env.GITHUB_RUN_ATTEMPT}`,
"- E2E URL: https://app.exceptionless.io",
"",
"Review the Playwright report and test-results artifacts attached to the workflow run."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class ExceptionlessE2EJourney {
this.projectId = getIdFromUrl(this.page, /\/project\/([^/]+)\/configure/);
}

await expect(this.page.getByText('Choose your project type.')).toBeVisible();
await expect(this.page.getByRole('button', { name: 'Please select a project type' })).toBeVisible();

await selectProjectType(this.page, 'Bash Shell');
await expect(this.page.getByText('Execute the following in your shell.')).toBeVisible();
Expand Down Expand Up @@ -222,7 +222,7 @@ export class ExceptionlessE2EJourney {
await this.page.waitForURL(/\/next\/project\/[^/]+\/configure/, { timeout: 30_000 });
this.projectId = getIdFromUrl(this.page, /\/project\/([^/]+)\/configure/);
this.organizationId = await this.getOrganizationIdByName();
await expect(this.page.getByText('Choose your project type.')).toBeVisible();
await expect(this.page.getByRole('button', { name: 'Please select a project type' })).toBeVisible();
}

async submitRepresentativeEvent(): Promise<void> {
Expand Down
Loading