@wpazderski/playwright-utils
    Preparing search index...
    • Ensures that value <= expected for number or big integer values.

      Usage

      const value = 42;
      expect(value).toBeLessThanOrEqual(42);

      Parameters

      • internalOptions: MatcherInternalOptions

        Internal options that provide extra context for the matcher.

      • received: number | bigint

        Received value.

      • expected: number | bigint

        The value to compare to.

      Returns void