我正在使用Jest并启用了覆盖率选项,并且我得到了:
--------------------------|----------|----------|----------|----------|----------------|
File | % Stmts | % Branch | % Funcs | % Lines |Uncovered Lines |
--------------------------|----------|----------|----------|----------|----------------|
progress-bar.js | 100 | 75 | 100 | 100 | 17 |
--------------------------|----------|----------|----------|----------|----------------|
所以我有17条未覆盖的线路,但我不确定如何覆盖它们。
进展-bar.js
import ProgressBar from 'progress'
import isNumber from 'lodash/isNumber'
import config from '../../config/global'
function progressBar (total) {
if (!isNumber(total)) throw new Error(`progressBar() 'total' arg is not a number.`)
const barCfg = config.progressBar
const tokens = `${barCfg.bar} ${barCfg.info}`
const options = {
width: barCfg.width,
total: total || 1,
complete: barCfg.complete,
incomplete: barCfg.incomplete
}
const bar = new ProgressBar(tokens, options)
bar.render()
return bar
}
export default progressBar
进展-bar.test.js
import ProgressBar from 'progress'
import progressBar from './progress-bar'
describe('progressBar()', () => {
test('returns instanceof ProgressBar', () => {
const actual = progressBar(5) instanceof ProgressBar
const expected = true
expect(actual).toBe(expected)
})
test('throw error if arg "total" is not a number', () => {
expect(() => { progressBar('moo') }).toThrow()
expect(() => { progressBar(null) }).toThrow()
})
test('progress bar progress/ticking', () => {
const bar = progressBar(5)
expect(bar.total).toBe(5)
expect(bar.curr).toBe(0)
bar.tick()
expect(bar.curr).toBe(1)
bar.tick()
expect(bar.curr).toBe(2)
bar.tick()
expect(bar.curr).toBe(3)
bar.tick()
expect(bar.curr).toBe(4)
bar.tick()
expect(bar.curr).toBe(5)
expect(bar.complete).toBe(true)
})
})
所以我正在测试参数并返回值。
如何全面测试此功能,包括17行..?
答案 0 :(得分:13)
好的,我现在坐在角落里戴着我的笨蛋帽子。
找到了这个:https://github.com/istanbuljs/nyc/issues/35#issuecomment-121008298
未覆盖的行= 17不是未覆盖行的计数,它是只有一个值的列表,即第17行:SELECT chart
FROM [Dentrix].[dbo].[DDB_APPT_BASE] where APPTDATE > '20160101'
and not exists
(SELECT app.APPTDATE FROM [Dentrix].[dbo].[DDB_APPT_BASE] as app
WHERE app.APPTDATE > '20170301')
。
修正了......
total: total || 1,
答案 1 :(得分:0)
如果“未覆盖的线”为黄色,则表示它们被部分覆盖。您可以通过生成覆盖范围的 HTML 报告找出哪些特定属性未转换:
npx jest --coverage --coverageDirectory='coverage'
然后打开 coverage/lcov-report/index.html
这将显示未经测试的特定代码路径
在我的例子中,一个函数有一个默认的 arg foo = false
,它正在用不同的 arg 值进行测试,但默认值没有被测试,所以它显示为黄色。