Skip to content

Commit

Permalink
fix: type error
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyxiao committed Nov 25, 2024
1 parent 1356b24 commit 2787124
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions sdks/sdk-greenhouse/src/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ const maybeTest = apiKey ? test : test.skip

maybeTest('get jobs from greenhouse', async () => {
const greenhouse = initSDK(greenhouseSdkDef, {
auth: {
basic: {
username: apiKey,
},
},
auth: {basic: {username: apiKey, password: ''}},
})

const res = await greenhouse.GET('/v1/jobs')
Expand Down
6 changes: 1 addition & 5 deletions sdks/sdk-lever/src/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@ const lever = initSDK(
},
},
{
auth: {
basic: {
username: apiKey,
},
},
auth: {basic: {username: apiKey, password: ''}},
envName: 'sandbox',
},
)
Expand Down

0 comments on commit 2787124

Please sign in to comment.