Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /**
* Fixture data for Kafka integration tests.
* Used by testKafkaMessageRoundTrip to verify produce/consume round-trips
* with various payload shapes.
*/
export const messages = [
{
topic: 'blong-integration',
payload: 'blong-integration-round-trip-test',
source: 'blong-kafka-test',
},
{
topic: 'blong-integration',
payload: 42,
source: 'blong-kafka-numeric-test',
},
{
topic: 'blong-integration',
payload: {nested: true, depth: 1},
source: 'blong-kafka-object-test',
},
] as const;
|