BUPKIS
    Preparing search index...

    Interface AssertionFailure

    Object which may be returned from assertion function implementations to provide better failure reporting to the end-user.

    interface AssertionFailure {
        actual?: unknown;
        expected?: unknown;
        message?: string;
    }
    Index

    Properties

    actual?: unknown

    The actual value or condition that was encountered

    expected?: unknown

    The expected value or condition that was not met

    message?: string

    A human-readable message describing the failure