From 5aed80e9302379edfd8c7dd3e6858d75e17fb456 Mon Sep 17 00:00:00 2001 From: Jace Browning Date: Fri, 21 Mar 2025 16:00:07 -0400 Subject: [PATCH] Switch to a variable that is set on pushes (#5940) --- e2e/playwright/test-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/playwright/test-utils.ts b/e2e/playwright/test-utils.ts index f4a36a8fa..c2e76c485 100644 --- a/e2e/playwright/test-utils.ts +++ b/e2e/playwright/test-utils.ts @@ -56,7 +56,7 @@ export const editorSelector = '[role="textbox"][data-language="kcl"]' type PaneId = 'variables' | 'code' | 'files' | 'logs' export function orRunWhenFullSuiteEnabled() { - return process.env.GITHUB_HEAD_REF !== 'all-e2e' + return process.env.GITHUB_REF !== 'all-e2e' } async function waitForPageLoadWithRetry(page: Page) {