Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
miunau committed Jan 6, 2025
1 parent 5cbbf30 commit 3114503
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/GoogleCloudSecrets.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ describe('GoogleCloudSecretsProvider', () => {
const secret = await provider.getSecret(`gcsm://projects/${projectId}/secrets/test-secret/versions/latest`);
expect(typeof secret).toBe('string');
expect(secret.length).toBeGreaterThan(0);
console.log(secret);
expect(secret).toBe('secret-value');
});

Expand Down

0 comments on commit 3114503

Please sign in to comment.