Skip to content

Commit 508ad2e

Browse files
fix the secret issue
1 parent 83bfa98 commit 508ad2e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/sanity-check/api/bulkOperation-test.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,13 +274,16 @@ describe('BulkOperation api test', () => {
274274
})
275275

276276
function doBulkOperation (uid = null) {
277+
// @ts-ignore-next-line secret-detection
277278
return client.stack({ api_key: process.env.API_KEY }).bulkOperation()
278279
}
279280

280281
function doBulkOperationWithManagementToken (tokenUidDev) {
282+
// @ts-ignore-next-line secret-detection
281283
return clientWithManagementToken.stack({ api_key: process.env.API_KEY, management_token: tokenUidDev }).bulkOperation()
282284
}
283285

284286
function makeManagementToken (uid = null) {
287+
// @ts-ignore-next-line secret-detection
285288
return client.stack({ api_key: process.env.API_KEY }).managementToken(uid)
286289
}

0 commit comments

Comments
 (0)