test-runner icon indicating copy to clipboard operation
test-runner copied to clipboard

Remove filterered stories from test

Open zb-sj opened this issue 10 months ago • 3 comments

My sub test only needs one story to test but the current tag filtering implementation creates redundant describe.skip(${title}, () => { it('no-op', () => {}) }); as per makeDescribe

It wastes noticeable time just to skip those tests.

Wouldn't it be better not to generate a description for filtered tests? I see there is skipTags for the exact purpose.

Please let me know what you think and I could probably make a quick PR for this.

zb-sj avatar Apr 15 '24 01:04 zb-sj