cypress-select-tests
cypress-select-tests copied to clipboard
specParser doesn't support dynamic generated tests
For below code, the specParser cannot return test back
describe("test"), () => {
[
{
locale: "ru",
},
{ locale: "be" },
].forEach((_t) => {
it(`works for ${_t.locale}`, () => {
xxxxx
});
});
});
I'm having the same issue, I'm using userRoles.forEach to dynamically generate tests but the test tags don't work anymore. Would be great to have support for this.
I also have the same issue. does anyone know if it is planned to add support for this? Thanks