BUPKIS
    Preparing search index...

    Variable promiseResolveWithValueSatisfyingAssertionConst

    promiseResolveWithValueSatisfyingAssertion: AssertionFunctionAsync<
        readonly [
            ZodCustom<PromiseLike<unknown>, PromiseLike<unknown>>,
            readonly [
                "to fulfill with value satisfying",
                "to resolve with value satisfying",
            ],
            ZodUnknown,
        ],
        (
            promise: PromiseLike<unknown>,
            param: unknown,
        ) => Promise<
            | { message: string; schema?: undefined; subject?: undefined }
            | {
                message?: undefined;
                schema: ZodType<any, unknown, $ZodTypeInternals<any, unknown>>;
                subject: unknown;
            },
        >,
        readonly [
            ZodCustom<PromiseLike<unknown>, PromiseLike<unknown>>,
            PhraseLiteralChoiceSlot<
                readonly [
                    "to fulfill with value satisfying",
                    "to resolve with value satisfying",
                ],
            >,
            ZodUnknown,
        ],
    > = ...

    Assertion for testing if a Promise fulfills with a value satisfying specific criteria.

    await expectAsync(
    Promise.resolve('hello'),
    'to fulfill with value satisfying',
    'hello',
    ); // passes
    await expectAsync(
    Promise.resolve('world'),
    'to resolve with value satisfying',
    /wor/,
    ); // passes
    await expectAsync(
    Promise.resolve({ name: 'John' }),
    'to fulfill with value satisfying',
    { name: 'John' },
    ); // passes