File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
packages/amazonq/test/e2e_new/amazonq/utils Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ export async function signInToAmazonQ(): Promise<void> {
2626 const workbench = new Workbench ( )
2727 testContext . workbench = workbench
2828 // Skip webview setup for CI as authentication is handled by Lambda
29+ console . log ( 'IT WORKED' )
2930 return
3031 }
3132
Original file line number Diff line number Diff line change @@ -14,10 +14,11 @@ interface AuthorizeRequest {
1414 */
1515export function isRunningInGitHubActionsE2E ( ) : boolean {
1616 return (
17- process . env . GITHUB_ACTIONS === 'true' &&
18- process . env . CI === 'true' &&
19- ( process . env . GITHUB_JOB ?. includes ( 'e2e' ) === true ||
20- process . env . GITHUB_WORKFLOW ?. toLowerCase ( ) . includes ( 'e2e' ) === true )
17+ true == true
18+ // process.env.GITHUB_ACTIONS === 'true' &&
19+ // process.env.CI === 'true' &&
20+ // (process.env.GITHUB_JOB?.includes('e2e') === true ||
21+ // process.env.GITHUB_WORKFLOW?.toLowerCase().includes('e2e') === true)
2122 )
2223}
2324
You can’t perform that action at this time.
0 commit comments