Skip to content

Commit

Permalink
refactor: read credentials from .env
Browse files Browse the repository at this point in the history
  • Loading branch information
m2rads committed Nov 14, 2024
1 parent c849f3a commit 219c452
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/shortest/scripts/test-github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ async function testGithubLogin() {
// Now handle GitHub login
console.log(pc.cyan('\n🔐 Starting GitHub login flow...'));
await githubTool.GithubLogin(browserTool, {
username: '[email protected]',
password: 'M2@rad99308475'
username: process.env.GITHUB_USERNAME || '',
password: process.env.GITHUB_PASSWORD || ''
});

console.log(pc.green('\n✅ Login Test Complete'));
Expand Down

0 comments on commit 219c452

Please sign in to comment.