例如,我有
describe('element', () => {
desctibe('button', () => {
it('default', () => {
// ...
});
it('other', () => {
// ...
});
});
describe('checkbox', () => {
it('default', () => {
// ...
});
it('other', () => {
// ...
});
});
});
如果我尝试按测试名称正则表达式模式«def»进行过滤,那么我会得到:
Pattern matches 2 tests from cached test suites
› default
› default
从结果不可理解,什么是什么,但我想这样:
Pattern matches 2 tests from cached test suites
› element button default
› element checkbox default
也就是说,我希望不仅看到describe
,还要按describe
和it
进行过滤。
但是怎么样?