本文整理汇总了TypeScript中assert-order.once函数的典型用法代码示例。如果您正苦于以下问题:TypeScript once函数的具体用法?TypeScript once怎么用?TypeScript once使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了once函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: join
ctest.each((t, d) => {
log.info('each', d.caseName, d.casePath)
order.once(dirs.length - dirsCopy.length)
const expected = dirsCopy.shift()
t.is(d.caseName, expected)
t.is(d.casePath, join(parent, d.caseName))
})
示例2: join
ctest.each.failing(/.*pass$/, (t, d) => {
log.info('each failing filter', d.caseName, d.casePath)
order4.once(dirs.length - dirsCopy4.length)
const expected = dirsCopy4.shift()
t.is(d.caseName, expected)
t.is(d.casePath, join(parent, d.caseName))
t.fail('failing')
// return order4.end(1).then(() => Promise.reject('no'))
})