Variable jasmineMatcherConst

jasmineMatcher: {
    toPassAsync: (() => {
        compare: ((checkable, options?) => Promise<{
            pass: boolean;
            message: string;
        }>);
    });
} = ...

Type declaration

  • toPassAsync: (() => {
        compare: ((checkable, options?) => Promise<{
            pass: boolean;
            message: string;
        }>);
    })
      • (): {
            compare: ((checkable, options?) => Promise<{
                pass: boolean;
                message: string;
            }>);
        }
      • Returns {
            compare: ((checkable, options?) => Promise<{
                pass: boolean;
                message: string;
            }>);
        }

        • compare: ((checkable, options?) => Promise<{
              pass: boolean;
              message: string;
          }>)
            • (checkable, options?): Promise<{
                  pass: boolean;
                  message: string;
              }>
            • Parameters

              Returns Promise<{
                  pass: boolean;
                  message: string;
              }>