Skip to content

Commit

Permalink
Check node env in CI - test
Browse files Browse the repository at this point in the history
  • Loading branch information
CandelR committed Jan 14, 2025
1 parent bcd51ad commit f9e17f9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/e2e/tests/specs/login.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ setup('Creating new user and logging in', async ({ browser }) => {
await SignupPage.typeInPassword(password);

await SignupPage.clickOnCreateAccountButton();
console.log({
isProduction: process.env.REACT_APP_NODE_ENV === 'production' || process.env.NODE_ENV === 'production',
});
await SignupPage.userWelcome();
await page.waitForTimeout(2000);

Expand Down

0 comments on commit f9e17f9

Please sign in to comment.