I'm a complete Cypress newbie working my way through the excellent testing your first application tutorial. However I've started to hit some compiler issues in the third section.
I've created a custom command as instructed, but am getting the following compiler error:
This Stack Overflow article seems to suggests adding export {}
to my file.
If I do this the compiler error goes away in the commands.ts
file but causes the introduction of the same error in another file. If I add the same export {}
line this pushes the error to a new file. After repeating the cycle a few times eventually I end up with this error:
Can anybody provide me with any help that's aimed at a beginner? I'm struggling to know how to progress and was making good progress up to this point