BUPKIS
    Preparing search index...

    Represents a generated 'and' chain ready to be passed to expect().

    The args array is structured as [subject, phrase1, 'and', phrase2, ...].

    interface ChainArgs {
        args: readonly unknown[];
        chainLength: number;
        subject: unknown;
    }
    Index

    Properties

    args: readonly unknown[]

    The args to pass to expect().

    chainLength: number

    Number of assertions in the chain.

    subject: unknown

    The generated subject value.