伊斯坦布尔忽略下一个在 JSX 和嵌套数组中不起作用
Istanbul ignore next not working inside JSX and nested arrays
我正在尝试使用 instanbul ignore next 来忽略我的测试覆盖率中的某些行,但它在 JSX 或嵌套数组中不起作用。有人知道我能做什么吗?
<Text
as="span" /* istanbul ignore next */ - IT WONT WORK HERE
variant={isMobile ? 'medParagraph' : 'smParagraph'} //im trying to ignore this line
sx={{
fontWeight: selected ? 'bold' : undefined,
}}>
{page}
</Text>
const itemList = [
...(siblingsEnd < count - boundaryCount - 1
? ['end-ellipsis']
: count - boundaryCount > boundaryCount
? [count - boundaryCount]
: []),
/* istanbul ignore next */ - WONT WORK HERE AS WELL
...endPages, //im trying to ignore this line
...(hideNextButton ? [] : ['next']),
...(showLastButton ? ['last'] : []),
];
我能够忽略将 istanbul 置于 const 定义之上的嵌套数组。
与 JSX 相同,我只是将伊斯坦布尔放在 return 上方。
我正在尝试使用 instanbul ignore next 来忽略我的测试覆盖率中的某些行,但它在 JSX 或嵌套数组中不起作用。有人知道我能做什么吗?
<Text
as="span" /* istanbul ignore next */ - IT WONT WORK HERE
variant={isMobile ? 'medParagraph' : 'smParagraph'} //im trying to ignore this line
sx={{
fontWeight: selected ? 'bold' : undefined,
}}>
{page}
</Text>
const itemList = [
...(siblingsEnd < count - boundaryCount - 1
? ['end-ellipsis']
: count - boundaryCount > boundaryCount
? [count - boundaryCount]
: []),
/* istanbul ignore next */ - WONT WORK HERE AS WELL
...endPages, //im trying to ignore this line
...(hideNextButton ? [] : ['next']),
...(showLastButton ? ['last'] : []),
];
我能够忽略将 istanbul 置于 const 定义之上的嵌套数组。
与 JSX 相同,我只是将伊斯坦布尔放在 return 上方。