Hi there,
I have question on how are you guys executing data driven tests.
assuming that you via node module read whole csv and load store values into object.
afterwards tester should iterate tests (it-s) through some foreach loop.
I coudln't manage to to put more than one it() into one foreach loop
so it should be
is that even possible in sencha test?Code:results.forEach(test => it("blah", function () { ST.blahblah.type(test.name).click }); it("blah1", function () { ST.blahblah }); );