Veronika Gjoreva

Results 3 comments of Veronika Gjoreva

Add the following before the `describe` or `context` in ts tests, it will suppress the error: ``` // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore describe('block with config tag', { tags: '@smoke' },...

@danreale you could add the following to suppress the error: ``` // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore describe('block with config tag', { tags: '@smoke' }, () => {}) ```

@LordRhys Yup, I had the same issue with @cypress/grep and using these comments helped. It just suppressed the error and the tags work. The annoying this however is that you...