Skip to content

Commit

Permalink
fix: fix test initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
pviti committed May 29, 2024
1 parent 4e21f81 commit b02262d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion specs/headers.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { getClient, CommonData, handleError, interceptRequest } from '../test/co
let clp: CommerceLayerProvisioningClient


beforeAll(async () => { clp = await getClient(true) })
beforeAll(async () => { clp = await getClient({}) })


describe('Test headers', () => {
Expand Down
2 changes: 1 addition & 1 deletion specs/resource.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let tempId: string


beforeAll(async () => {
clp = await getClient(true)
clp = await getClient({})
memberships = await clp.memberships.list({ pageSize: 1})
})

Expand Down

0 comments on commit b02262d

Please sign in to comment.