Skip to content

Commit

Permalink
test: correct version of Zeebe for local integration
Browse files Browse the repository at this point in the history
  • Loading branch information
jwulf committed Oct 24, 2024
1 parent 60c2469 commit fc5d5ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

services:
zeebe: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#zeebe
image: camunda/zeebe:${CAMUNDA_PLATFORM_VERSION}
image: camunda/zeebe:${CAMUNDA_ZEEBE_VERSION}
container_name: zeebe
ports:
- "26500:26500"
Expand Down
6 changes: 1 addition & 5 deletions src/__tests__/c8/rest/migrateProcess.rest.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import path from 'path'

import { CamundaJobWorker } from 'c8/lib/CamundaJobWorker'

import { CamundaJobWorker } from '../../../c8/lib/CamundaJobWorker'
import { CamundaRestClient } from '../../../c8/lib/CamundaRestClient'
import { LosslessDto } from '../../../lib'

Expand Down Expand Up @@ -41,9 +40,6 @@ test('RestClient can migrate a process instance', async () => {
worker: 'Migrant Worker 1',
customHeadersDto: CustomHeaders,
jobHandler: async (job) => {
// tslint:disable-next-line: no-console
console.log('job', job) // @DEBUG

instanceKey = job.processInstanceKey
processVersion = job.customHeaders.ProcessVersion as number
return job.complete().then(async (outcome) => {
Expand Down

0 comments on commit fc5d5ac

Please sign in to comment.