Skip to content

Commit ed961cb

Browse files
committed
fix: Fix date serialization in notification connector test
1 parent 9f0d7b6 commit ed961cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/connectors/__tests__/notification-connector.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ describe('NotificationConnector', () => {
238238
const storedResult = {
239239
messageId: 'msg_123',
240240
status: NotificationStatus.SENT,
241-
deliveredAt: new Date(),
241+
deliveredAt: new Date().toISOString(),
242242
};
243243
vi.mocked(mockStorage.get).mockResolvedValueOnce(JSON.stringify(storedResult));
244244

0 commit comments

Comments
 (0)