• Component that provides a button to view and copy a confidence test command for debugging and bug reporting purposes.

    The test command allows users to reproduce the confidence calculation locally using the npm test:confidence script.

    Parameters

    Returns ReactNode

    Button component with export functionality

    export function ConfidenceTestExporter({
    match,
    }: Readonly<ConfidenceTestExporterProps>): React.ReactNode {
    return (
    <div className="flex gap-1">
    <Suspense fallback={null}>
    <ConfidenceTestModalLazy match={match} />
    </Suspense>
    </div>
    );
    }