Skip to content

Commit

Permalink
update unit-test
Browse files Browse the repository at this point in the history
  • Loading branch information
pnts-se committed Aug 17, 2023
1 parent c57c1ba commit f8100e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __tests__/unit-tests/RoomServerConnection.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ test('request() - should ', async () => {
connection: mockConn
};
const requestSpy = jest.spyOn(mockConn, 'request');
const fakeMessage = 'msg' as unknown as SocketMessage;
const fakeMessage = { data: {} } as unknown as SocketMessage;

const sut = new RoomServerConnection(options);

Expand Down

0 comments on commit f8100e8

Please sign in to comment.