describe('some test', function() {
for(i = 0; i < someData.length; i++) {
it("test scenario "+i, function() {
assert.deepEqual(someValue, someData[i]);
});
}
});
Having the above code is not printing mutiple pass results. It is printing the below (in green color) in the console.
0 passing (42ms)