BUPKIS
    Preparing search index...

    Interface PropertyTestHarnessContext

    Context for creating a property test harness.

    Contains the expect functions that will be used to test assertions.

    interface PropertyTestHarnessContext {
        expect: (value: unknown, ...args: unknown[]) => void;
        expectAsync: (value: unknown, ...args: unknown[]) => Promise<void>;
    }
    Index

    Properties

    Properties

    expect: (value: unknown, ...args: unknown[]) => void
    expectAsync: (value: unknown, ...args: unknown[]) => Promise<void>