When I run npx find-cypress-specs --names I get this error. find-cypress-specs: problem parsing file cypress/e2e/e2e/Admin/Admin.spec.ts
I'm assuming this is because of the way I am using the enum as a tag. A string works. Is this a bug that can be fixed, or do I need to take an alternative approach?
Any spec file that I have (all typescript files.
.spec.ts
) have tags like so, where the tag is a typescript enum:The tags are an import from a typescript enum.
When I run
npx find-cypress-specs --names
I get this error.find-cypress-specs: problem parsing file cypress/e2e/e2e/Admin/Admin.spec.ts
I'm assuming this is because of the way I am using the enum as a tag. A string works. Is this a bug that can be fixed, or do I need to take an alternative approach?
Thanks!