Skip to content

Commit

Permalink
test(operate): disable OAuth in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jwulf committed Apr 9, 2024
1 parent 92ce54d commit 219431a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/__tests__/operate/operate-integrate.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ describe('Operate Integration', () => {

test('getJSONVariablesforProcess works', async () => {
const c = new OperateApiClient()
const zeebe = new ZeebeGrpcClient()
const zeebe = new ZeebeGrpcClient({
config: { CAMUNDA_OAUTH_DISABLED: true },
})
await zeebe.deployResource({
processFilename: 'src/__tests__/testdata/operate-straightthrough.bpmn',
})
Expand Down

0 comments on commit 219431a

Please sign in to comment.