Solved
Forum Discussion
Lucian
7 years agoCommunity Hero
Hey Alex,
Can you please use this code so I can understand what happens?
switch (item_type)
{
case "a":
break
case "b":
log.info("item_type equals b")
break
default:
log.info("item_type wasn't equal to any case")
break
}
What is it logged when running the test case now?
TanyaYatskovska
Alumni
7 years agoHi krogold,
Were you able to identify the cause of the issue?