Skip to content

Commit

Permalink
Update dev-packages/test-utils/src/event-proxy-server.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Francesco Novy <[email protected]>
  • Loading branch information
lforst and mydea authored Jul 4, 2024
1 parent 25ebcb0 commit 5ad28ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-packages/test-utils/src/event-proxy-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export async function startProxyServer(
eventCallbackListeners.add(callbackListener);

eventBuffer.forEach(bufferedEvent => {
if (bufferedEvent.timestamp > listenerTimestamp) {
if (bufferedEvent.timestamp >= listenerTimestamp) {
callbackListener(bufferedEvent.data);
}
});
Expand Down

0 comments on commit 5ad28ed

Please sign in to comment.