feat: update env variable names (#8621)

This commit is contained in:
Yunus M 2025-07-26 17:16:44 +05:30 committed by GitHub
parent 2639f975ee
commit 52636284fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,9 +1,9 @@
import { Page } from '@playwright/test';
// Read credentials from environment variables
const username = process.env.SIGNOZ_E2E_USERNAME;
const password = process.env.SIGNOZ_E2E_PASSWORD;
const baseURL = process.env.SIGNOZ_E2E_BASE_URL;
const username = process.env.LOGIN_USERNAME;
const password = process.env.LOGIN_PASSWORD;
const baseURL = process.env.BASE_URL;
/**
* Ensures the user is logged in. If not, performs the login steps.