Skip to content

Commit 8190723

Browse files
committed
fix(tests): Update test-default-organization.js password to secure version
Problem: - TestPassword123! is in breach database - Better Auth rejected with PASSWORD_COMPROMISED - test-default-organization.js failing on signup Solution: - Updated TEST_PASSWORD to RoboLearnAdmin2024!SecureTest - Consistent with all other test files Result: - Signup will succeed - Auto-join default organization test should pass - ALL API tests should finally pass! 🚀🎉 🤖 Generated with Claude Code
1 parent c0440b9 commit 8190723

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auth-server/tests/test-default-organization.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const DEFAULT_ORG_ID = 'panaversity-default-org-id';
1818

1919
// Generate unique test user email for each test run
2020
const TEST_EMAIL = `test-${Date.now()}-${crypto.randomBytes(4).toString('hex')}@test.com`;
21-
const TEST_PASSWORD = 'TestPassword123!';
21+
const TEST_PASSWORD = 'RoboLearnAdmin2024!SecureTest';
2222
const TEST_NAME = 'Test User';
2323

2424
function generateCodeVerifier() {

0 commit comments

Comments
 (0)