Skip to content

Commit

Permalink
chore: fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverlaz committed Dec 11, 2023
1 parent a749f97 commit 02f0098
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/client/src/__tests__/server-side/call.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ describe('call API', () => {
});

it('RTMP address', async () => {
const resp = await call.getOrCreate();
const resp = await call.getOrCreate({
data: {
created_by_id: 'john',
},
});
const address = resp.call.ingress.rtmp.address;

expect(address).toBeDefined();
Expand Down

0 comments on commit 02f0098

Please sign in to comment.