lab 常用配置参数 代码片段
生活随笔
收集整理的這篇文章主要介紹了
lab 常用配置参数 代码片段
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1、--leaks 啟用內(nèi)存泄漏檢測,并在檢測到時(shí)向您發(fā)出警告
2、代碼片段
experiment('getting started with hapi testing,', () => {// 這種寫法會跳過測試test('lab considers this test as TOOD and skips it')// 這種寫法不會跳過測試test('always succeeding :)', () => { }) })3、test 和experiment常用參數(shù)
timeout: 設(shè)置特定的超時(shí)(以毫秒為單位)。 默認(rèn)為2,000 ms或-m的值
parallel: 在每個(gè)實(shí)驗(yàn)級別內(nèi)激活并行執(zhí)行測試。 默認(rèn)為false(串行執(zhí)行)
skip: 跳過執(zhí)行。 設(shè)置父級跳過后,無法在子級中覆蓋
only: 使用skip標(biāo)記所有其他測試或?qū)嶒?yàn)
為每個(gè)測試并行運(yùn)行的實(shí)驗(yàn)提供一個(gè)選項(xiàng)對象:
experiment('getting started with hapi testing,', { parallel: true }, () => { test('lab considers this test as TODO and skips it')test('always succeeding :)', { timeout: 5000 }, () => {}) })設(shè)置only和skip選項(xiàng)的另一種方法是鏈接具有相同名稱的方法,如下所示:
experiment('getting started with hapi testing,', { parallel: true }, () => { test.skip('lab considers this test as TODO and skips it')test('always succeeding :)', { timeout: 5000 }, () => {}) })總結(jié)
以上是生活随笔為你收集整理的lab 常用配置参数 代码片段的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 终极算法【6】——贝叶斯学派
- 下一篇: 唐宇迪学习笔记11:决策树算法