本文整理汇总了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));
}
});
});
});
示例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));
}
});
});
});