• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript jest-matcher-utils.RECEIVED_COLOR函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中jest-matcher-utils.RECEIVED_COLOR函数的典型用法代码示例。如果您正苦于以下问题:TypeScript RECEIVED_COLOR函数的具体用法?TypeScript RECEIVED_COLOR怎么用?TypeScript RECEIVED_COLOR使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了RECEIVED_COLOR函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: Error

const ensureMock = (mockOrSpy: any, matcherName: any) => {
  if (
    !mockOrSpy ||
    ((mockOrSpy.calls === undefined || mockOrSpy.calls.all === undefined) &&
      mockOrSpy._isMockFunction !== true)
  ) {
    throw new Error(
      matcherErrorMessage(
        matcherHint('[.not]' + matcherName, 'jest.fn()', ''),
        `${RECEIVED_COLOR('received')} value must be a mock or spy function`,
        printWithType('Received', mockOrSpy, printReceived),
      ),
    );
  }
};
开发者ID:Volune,项目名称:jest,代码行数:15,代码来源:spyMatchers.ts


示例2:

 report = () =>
   `New snapshot was ${RECEIVED_COLOR('not written')}. The update flag ` +
   `must be explicitly passed to write a new snapshot.\n\n` +
   `This is likely because this test is run in a continuous integration ` +
   `(CI) environment in which snapshots are not written by default.\n\n` +
   `${RECEIVED_COLOR('Received value')} ` +
   `${actual}`;
开发者ID:Volune,项目名称:jest,代码行数:7,代码来源:index.ts


示例3: EXPECTED_COLOR

 report = () =>
   `${RECEIVED_COLOR('Received value')} does not match ` +
   `${EXPECTED_COLOR(`stored snapshot "${result.key}"`)}.\n\n` +
   (diffMessage ||
     EXPECTED_COLOR('- ' + (expected || '')) +
       '\n' +
       RECEIVED_COLOR('+ ' + actual));
开发者ID:Volune,项目名称:jest,代码行数:7,代码来源:index.ts


示例4: getState

const extractExpectedAssertionsErrors = () => {
  const result = [];
  const {
    assertionCalls,
    expectedAssertionsNumber,
    expectedAssertionsNumberError,
    isExpectingAssertions,
    isExpectingAssertionsError,
  } = getState();

  resetAssertionsLocalState();

  if (
    typeof expectedAssertionsNumber === 'number' &&
    assertionCalls !== expectedAssertionsNumber
  ) {
    const numOfAssertionsExpected = EXPECTED_COLOR(
      pluralize('assertion', expectedAssertionsNumber),
    );

    expectedAssertionsNumberError.message =
      matcherHint('.assertions', '', String(expectedAssertionsNumber), {
        isDirectExpectCall: true,
      }) +
      '\n\n' +
      `Expected ${numOfAssertionsExpected} to be called but received ` +
      RECEIVED_COLOR(pluralize('assertion call', assertionCalls || 0)) +
      '.';

    result.push({
      actual: assertionCalls,
      error: expectedAssertionsNumberError,
      expected: expectedAssertionsNumber,
    });
  }
  if (isExpectingAssertions && assertionCalls === 0) {
    const expected = EXPECTED_COLOR('at least one assertion');
    const received = RECEIVED_COLOR('received none');

    isExpectingAssertionsError.message =
      matcherHint('.hasAssertions', '', '', {
        isDirectExpectCall: true,
      }) +
      '\n\n' +
      `Expected ${expected} to be called but ${received}.`;

    result.push({
      actual: 'none',
      error: isExpectingAssertionsError,
      expected: 'at least one',
    });
  }

  return result;
};
开发者ID:Volune,项目名称:jest,代码行数:55,代码来源:extractExpectedAssertionsErrors.ts


示例5: matcherHint

 : () =>
     matcherHint(matcherName, receivedName) +
     '\n\n' +
     `Expected ${identifier} to have last returned:\n` +
     `  ${printExpected(expected)}\n` +
     (!lastResult
       ? `But it was ${RECEIVED_COLOR('not called')}`
       : lastResult.type === 'incomplete'
       ? `But the last call ${RECEIVED_COLOR('has not returned yet')}`
       : lastResult.type === 'throw'
       ? `But the last call ${RECEIVED_COLOR('threw an error')}`
       : `But the last call returned:\n  ${printReceived(
           lastResult.value,
         )}`);
开发者ID:Volune,项目名称:jest,代码行数:14,代码来源:spyMatchers.ts


示例6: diff

 : () => {
     const diffString =
       valuePassed && hasEndProp
         ? diff(value, result.value, {expand: this.expand})
         : '';
     return (
       matcherHint('.toHaveProperty', 'object', 'path', {
         secondArgument,
       } as MatcherHintOptions) +
       '\n\n' +
       `Expected the object:\n` +
       `  ${printReceived(object)}\n` +
       `To have a nested property:\n` +
       `  ${printExpected(keyPath)}\n` +
       (valuePassed
         ? `With a value of:\n  ${printExpected(value)}\n`
         : '') +
       (hasEndProp
         ? `Received:\n` +
           `  ${printReceived(result.value)}` +
           (diffString ? `\n\nDifference:\n\n${diffString}` : '')
         : traversedPath
         ? `Received:\n  ${RECEIVED_COLOR(
             'object',
           )}.${traversedPath}: ${printReceived(lastTraversedObject)}`
         : '')
     );
   };
开发者ID:Volune,项目名称:jest,代码行数:28,代码来源:matchers.ts


示例7: function

  function(this: MatcherState, received: Function, expected: any) {
    const options = {
      isNot: this.isNot,
      promise: this.promise,
    };

    let thrown = null;

    if (fromPromise && isError(received)) {
      thrown = getThrown(received);
    } else {
      if (typeof received !== 'function') {
        if (!fromPromise) {
          const placeholder = expected === undefined ? '' : 'expected';
          throw new Error(
            matcherErrorMessage(
              matcherHint(matcherName, undefined, placeholder, options),
              `${RECEIVED_COLOR('received')} value must be a function`,
              printWithType('Received', received, printReceived),
            ),
          );
        }
      } else {
        try {
          received();
        } catch (e) {
          thrown = getThrown(e);
        }
      }
    }

    if (expected === undefined) {
      return toThrow(matcherName, options, thrown);
    } else if (typeof expected === 'function') {
      return toThrowExpectedClass(matcherName, options, thrown, expected);
    } else if (typeof expected === 'string') {
      return toThrowExpectedString(matcherName, options, thrown, expected);
    } else if (expected !== null && typeof expected.test === 'function') {
      return toThrowExpectedRegExp(matcherName, options, thrown, expected);
    } else if (
      expected !== null &&
      typeof expected.asymmetricMatch === 'function'
    ) {
      return toThrowExpectedAsymmetric(matcherName, options, thrown, expected);
    } else if (expected !== null && typeof expected === 'object') {
      return toThrowExpectedObject(matcherName, options, thrown, expected);
    } else {
      throw new Error(
        matcherErrorMessage(
          matcherHint(matcherName, undefined, undefined, options),
          `${EXPECTED_COLOR(
            'expected',
          )} value must be a string or regular expression or class or error`,
          printWithType('Expected', expected, printExpected),
        ),
      );
    }
  };
开发者ID:facebook,项目名称:jest,代码行数:58,代码来源:toThrowMatchers.ts


示例8: RECEIVED_COLOR

export const printReceivedStringContainExpectedSubstring = (
  received: string,
  start: number,
  length: number, // not end
): string =>
  RECEIVED_COLOR(
    '"' +
      printSubstring(received.slice(0, start)) +
      INVERTED_COLOR(printSubstring(received.slice(start, start + length))) +
      printSubstring(received.slice(start + length)) +
      '"',
  );
开发者ID:facebook,项目名称:jest,代码行数:12,代码来源:print.ts



注:本文中的jest-matcher-utils.RECEIVED_COLOR函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript jest-matcher-utils.diff函数代码示例发布时间:2022-05-25
下一篇:
TypeScript jest-matcher-utils.EXPECTED_COLOR函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap