Interface AsymmetricMatchersContaining

interface AsymmetricMatchersContaining {
    arrayContaining<T>(expected): any;
    closeTo(expected, precision?): any;
    objectContaining<T>(expected): any;
    stringContaining(expected): any;
    stringMatching(expected): any;
}

Hierarchy (view full)

Methods

  • Type Parameters

    • T = unknown

    Parameters

    • expected: T[]

    Returns any

  • Parameters

    • expected: number
    • Optional precision: number

    Returns any

  • Type Parameters

    • T = any

    Parameters

    • expected: T

    Returns any

  • Parameters

    • expected: string

    Returns any

  • Parameters

    Returns any

Generated using TypeDoc