Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacroldan committed Dec 18, 2024
1 parent d8cc553 commit 8c00b5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/app/src/cli/services/dev/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('devUIExtensions()', () => {

// THEN
expect(server.setupHTTPServer).toHaveBeenCalledWith({
devOptions: options,
devOptions: {...options, websocketURL: 'wss://mock.url/extensions'},
payloadStore: {mock: 'payload-store'},
})
})
Expand All @@ -82,6 +82,7 @@ describe('devUIExtensions()', () => {
...options,
httpServer: expect.objectContaining({mock: 'http-server'}),
payloadStore: {mock: 'payload-store'},
websocketURL: 'wss://mock.url/extensions',
})
})

Expand Down

0 comments on commit 8c00b5e

Please sign in to comment.