Sep 17, 2022
Yeah, there is also one hack — if you need to skip ALL test in your tile, you can declare:
test.beforeEach(async () => {
test.skip();
});
Yeah, there is also one hack — if you need to skip ALL test in your tile, you can declare:
test.beforeEach(async () => {
test.skip();
});
Quality assurance engineer: I’m testing web applications, APIs and do automation testing.