柏木选择测试或任何其他分离烟雾的方法,柏木中的回归测试案例



是否有人使用柏树选择测试或任何其他方式在柏树中分离烟雾、回归测试用例?我使用了cyprus select测试来标记我的测试用例,但发现它首先扫描所有测试用例,然后将它们标记为挂起/未执行的测试用例。

**use.only before the test case.**
describe("suite",() => {
it.only("test case1",() => {})
it("test case2",() => {})
it.only("test case3",() => {})
})
**it will run only test case1 and 3 only remaining test cases will sort out.**

相关内容

最新更新