TestActivityInspector type
Signature for a function that can be used to inspect individual activities returned by a bot
that's being tested using the TestAdapter.
type TestActivityInspector = (activity: Partial<Activity>, description: string) => void;
type TestActivityInspector = (
activity: Partial<Activity>,
description?: string
) => void