We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1766429 commit 8f3d385Copy full SHA for 8f3d385
1 file changed
playwright/helpers/app-test-helpers.ts
@@ -226,16 +226,6 @@ export const connectByotWithSingleRepo = async (page: Page) => {
226
const repoSelect = page.getByLabel('Pull request repository')
227
await expect(repoSelect).toHaveValue('knightedcodemonkey/develop')
228
229
- const pushModeVisible = await page
230
- .getByRole('button', { name: 'Push commit to active pull request branch' })
231
- .isVisible()
232
-
233
- if (pushModeVisible) {
234
- await expect(repoSelect).toBeDisabled()
235
- } else {
236
- await expect(repoSelect).toBeEnabled()
237
- }
238
239
240
241
await expect(
0 commit comments