Enable tests to run on pushes to 'all-e2e' branch (#5945)

* Enable tests to run on pushes to 'all-e2e' branch

* Document branch behavior
This commit is contained in:
Jace Browning
2025-03-21 21:55:54 -04:00
committed by GitHub
parent de2b1b3bea
commit 0d0dd1019b
6 changed files with 11 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 68 KiB

View File

@ -56,7 +56,8 @@ export const editorSelector = '[role="textbox"][data-language="kcl"]'
type PaneId = 'variables' | 'code' | 'files' | 'logs'
export function orRunWhenFullSuiteEnabled() {
return process.env.GITHUB_REF !== 'all-e2e'
const branch = process.env.GITHUB_REF?.replace('refs/heads/', '')
return branch !== 'all-e2e'
}
async function waitForPageLoadWithRetry(page: Page) {