I am seeing pending state in my commands logs in LambdaTest dashboard while running my cypress project

I am seeing pending state in my commands logs in LambdaTest dashboard while running my cypress project. How can I fix this issue?

Hi Emma,

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')
})