Skip to content

Commit 0869a5b

Browse files
committed
log path
1 parent 59ce5f5 commit 0869a5b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/integration/keys.test.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ describe('Keys Utilities', () => {
2424
throw new Error('Missing Environment setup')
2525
}
2626

27-
const privateKey = fs.readFileSync(path.join(__dirname, '..', '..', 'keys', 'key.pem'), 'utf-8')
27+
const privateKeyPath = path.join(__dirname, '..', '..', 'keys', 'key.pem')
28+
console.log(fs.readdirSync(path.dirname(privateKeyPath)))
29+
30+
const privateKey = fs.readFileSync(privateKeyPath, 'utf-8')
2831

2932
const token = await getManagementToken(privateKey, {
3033
appInstallationId,

0 commit comments

Comments
 (0)