I am seeing pending state in my commands logs in LambdaTest dashboard while running my cypress project. Could you please help me out?

I am seeing pending state in my commands logs in LambdaTest dashboard while running my cypress project. Could you please help me out?

Hi Noah,

Please verify if you are using the skip function in your scripts. This will lead to a pending state in the LambdaTest dashboard.

it.skip('returns "fizz" when a number is multiple of 3', () => {
  numsExpectedToEq([9, 12, 18], 'fizz')
})