当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript testUtils.TOKEN_LOCATIONS类代码示例

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


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

示例1: it

    VALID_HASHTAGS.forEach(hashtag => {
      TOKEN_LOCATIONS.forEach((location, i) => {
        it(`for: ${hashtag} - ${location}`, () => {
          parser.keyIndex = -1; // Reset for easier testing

          const tokenString = location.replace(/\{token\}/g, hashtag);
          const actual = parser.applyMatchers(tokenString, parentConfig);

          if (i === 0) {
            expect(actual).toBe(createExpectedToken(hashtag, createHashtag, 0));
          } else {
            expect(actual).toEqual(createExpectedToken(hashtag, createHashtag, i));
          }
        });
      });
    });
开发者ID:milesj,项目名称:interweave,代码行数:16,代码来源:HashtagMatcher.test.ts

示例2: it

    VALID_URLS.forEach(urlParams => {
      TOKEN_LOCATIONS.forEach((location, i) => {
        it(`for: ${urlParams.url} - ${location}`, () => {
          parser.keyIndex = -1; // Reset for easier testing

          const tokenString = location.replace(/\{token\}/g, urlParams.url);
          const actual = parser.applyMatchers(tokenString, parentConfig);

          if (i === 0) {
            expect(actual).toBe(createExpectedToken(urlParams, createUrl, 0));
          } else {
            expect(actual).toEqual(createExpectedToken(urlParams, createUrl, i));
          }
        });
      });
    });
开发者ID:milesj,项目名称:interweave,代码行数:16,代码来源:UrlMatcher.test.ts


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