We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c57a674 commit eeee3adCopy full SHA for eeee3ad
1 file changed
packages/b2c-dx-mcp/test/server.test.ts
@@ -30,6 +30,11 @@ class MockTelemetry {
30
this.events.push({name, attributes});
31
}
32
33
+ async sendEventAndFlush(name: string, attributes: Record<string, unknown> = {}): Promise<void> {
34
+ this.sendEvent(name, attributes);
35
+ await this.flush();
36
+ }
37
+
38
async start(): Promise<void> {
39
this.started = true;
40
0 commit comments