Skip to content

Commit

Permalink
refactor(repo): rename tests (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwulf authored Dec 14, 2023
1 parent a47cb71 commit d937612
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ test('createClient', async () => {
const clusters = await c.getClusters()
const clusterUuid = clusters[0].uuid
const res = await c.createClient({clusterUuid, clientName: 'testors', permissions: ["Zeebe"]})
console.log('res', res)
const client = await c.getClient(clusterUuid, res.clientId)
console.log('client', client)
expect(client.ZEEBE_ADDRESS).toBeTruthy()
await c.deleteClient(clusterUuid, res.clientId)
expect(c).toBeTruthy()
})
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ProcessDefinition, ProcessInstance, Query } from "../lib/APIObjects";
import { OperateApiClient } from "../";
import { OperateApiClient } from "..";

const c = new OperateApiClient();
jest.setTimeout(15000)
Expand Down
File renamed without changes.

0 comments on commit d937612

Please sign in to comment.