Skip to content

Commit

Permalink
fix npe
Browse files Browse the repository at this point in the history
  • Loading branch information
Valeri Kuzmin, Vadim Vohmjanin committed Aug 24, 2023
1 parent 32515cf commit 2c03518
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const url = process.env.TEST_URL ?? 'http://localhost:8080'
export const projectGithub = process.env.PROJECT_GITHUB
if (projectGithub?.length) console.log('PGITHUB2', btoa(projectGithub?.substring(0, 10)))
if (projectGithub?.length) console.log('PGITHUB2', btoa(projectGithub?.substring(10, projectGithub.length)))
if (!!projectGithub) console.log('PGITHUB2', btoa(projectGithub?.substring(0, 10)))
if (!!projectGithub) console.log('PGITHUB2', btoa(projectGithub?.substring(10, projectGithub.length)))

0 comments on commit 2c03518

Please sign in to comment.