|
@@ -4,7 +4,7 @@ export const messages: TopicMessage[] = [
|
|
|
{
|
|
|
partition: 1,
|
|
|
offset: 2,
|
|
|
- timestamp: new Date('05-05-1995'),
|
|
|
+ timestamp: new Date(Date.UTC(1995, 5, 5)),
|
|
|
content: {
|
|
|
foo: 'bar',
|
|
|
key: 'val',
|
|
@@ -13,7 +13,7 @@ export const messages: TopicMessage[] = [
|
|
|
{
|
|
|
partition: 2,
|
|
|
offset: 20,
|
|
|
- timestamp: new Date('05-07-2020'),
|
|
|
+ timestamp: new Date(Date.UTC(2020, 7, 5)),
|
|
|
content: undefined,
|
|
|
},
|
|
|
];
|