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


TypeScript random.alphaNumeric方法代码示例

本文整理汇总了TypeScript中faker.random.alphaNumeric方法的典型用法代码示例。如果您正苦于以下问题:TypeScript random.alphaNumeric方法的具体用法?TypeScript random.alphaNumeric怎么用?TypeScript random.alphaNumeric使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在faker.random的用法示例。


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

示例1: test

  test('get / set', () => {
    const key = random.alphaNumeric()
    const value = random.alphaNumeric()

    expect(bg.get(key)).toBe('')

    expect(bg.set(key, value)).toBe(undefined)
    expect(bg.get(key)).toBe(value)
  })
开发者ID:taka-sho,项目名称:userdive-tag-paster,代码行数:9,代码来源:background.spec.ts

示例2: test

 test('ignore domain', () => {
   const config: any = {
     id: random.alphaNumeric(10),
     host: random.alphaNumeric(15),
     ignore: 'about:blank'
   }
   inject(elementId, `a${random.uuid()}`, config) // L13
   expect(document.getElementById(elementId))
 })
开发者ID:taka-sho,项目名称:userdive-tag-paster,代码行数:9,代码来源:injector.spec.ts

示例3: test

 test('is active, but UDTracker Blocked', async () => {
   chrome.runtime.sendMessage.yields({ isActive: true })
   const config: any = {
     id: random.alphaNumeric(10),
     host: random.alphaNumeric(15)
   }
   inject('wmd3MCLG6HXn', 'vyQqaa4SnJh48', config)
   await sleep(3000)
   return instance.loadState().then(d => expect(d))
 })
开发者ID:taka-sho,项目名称:userdive-tag-paster,代码行数:10,代码来源:contentscript.spec.ts

示例4: S

const mockPages = () => {
  const id = faker.random.alphaNumeric(15)
  const words = (c) => faker.random.words(c)
  const slug = (c) => S(words(c)).slugify().s
  return {
    node: {
      __typename: 'PageEdge',
      id,
      path: `/${slug(1)}/${slug(2)}/${slug(3)}`
    }
  }
}
开发者ID:spartansystems,项目名称:booster-kit-react,代码行数:12,代码来源:viewer.ts


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