You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it('Activity Filter Date', { tags: [PR, E2E] }, () => { --> This will not work even though PR and E2E are variables that reference a string it('Activity Filter Date', { tags: ['PR', 'E2E'] }, () => { --> This works when you pass the tags directly as strings
Desired behavior
We should be able to pass variables since on our projects it allow us to prevent people from adding the wrong tags or misspell something since they are forced to chose from a list.
Current behavior
it('Activity Filter Date', { tags: [PR, E2E] }, () => {
--> This will not work even though PR and E2E are variables that reference a stringit('Activity Filter Date', { tags: ['PR', 'E2E'] }, () => {
--> This works when you pass the tags directly as stringsDesired behavior
We should be able to pass variables since on our projects it allow us to prevent people from adding the wrong tags or misspell something since they are forced to chose from a list.
Test code to reproduce
it('Activity Filter Date', { tags: [PR, E2E] }, () => {
Cypress Version
13.6.6
Node version
16.0.0
Operating System
Windows 11 Enterprise
Debug Logs
No response
Other
No response
The text was updated successfully, but these errors were encountered: