@wpazderski/playwright-utils
    Preparing search index...

    Assymmetric matcher that matches everything except null and undefined. Use it inside expect(value).toEqual(expected) to perform pattern matching.

    Usage

    const value = { prop: 1 };
    expect(value).toEqual({ prop: expect.anything() });
    expect(value).not.toEqual({ otherProp: expect.anything() });

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    $$typeof: symbol = ...

    Symbol to identify asymmetric matcher.

    inverse: boolean

    If true, the matcher will check for non-matching values.

    sample: void

    The sample value to match against.

    Methods