import type {ExceptionValue} from 'sentry/types'; export function ExceptionValueFixture( props: Partial = {} ): ExceptionValue { return { mechanism: null, rawStacktrace: null, stacktrace: null, threadId: null, type: 'BadError', value: 'message', module: null, ...props, }; }