1、--leaks 启用内存泄漏检测,并在检测到时向您发出警告
2、代码片段
experiment('getting started with hapi testing,', () => {
// 这种写法会跳过测试
test('lab considers this test as TOOD and skips it')
// 这种写法不会跳过测试
test('always succeeding :)', () => { })
})
3、test 和experiment常用参数
timeout: 设置特定的超时(以毫秒为单位)。 默认为2,000 ms或-m的值
parallel: 在每个实验级别内激活并行执行测试。 默认为false(串行执行)
skip: 跳过执行。 设置父级跳过后,无法在子级中覆盖
only: 使用skip标记所有其他测试或实验
为每个测试并行运行的实验提供一个选项对象:
experiment('getting started with hapi testing,', { parallel: true }, () => {
test('lab considers this test as TODO and skips it')
test('always succeeding :)', { timeout: 5000 }, () => {})
})
设置only和skip选项的另一种方法是链接具有相同名称的方法,如下所示:
experiment('getting started with hapi testing,', { parallel: true }, () => {
test.skip('lab considers this test as TODO and skips it')
test('always succeeding :)', { timeout: 5000 }, () => {})
})
本文介绍HAPI测试框架的基本用法,包括如何启用内存泄漏检测、设置测试超时及并行执行。通过代码示例展示如何使用test和experiment函数进行单元测试,以及如何跳过特定测试和设置测试超时。
197

被折叠的 条评论
为什么被折叠?



