How to skip a feature in cypress so that its not tested for end to end tests
Tech: Angular 8 with cypress versions:
- "cypress": "^3.4.1"
- "cypress-cucumber-preprocessor": "^1.16.2"
- "cypress-pipe": "^1.4.0"
I'm using cypress with its test runner (./node_modules/.bin/cypress open).
I'm having trouble skipping a test. I understand how to @focus on a feature like so:
Feature: App is alive
checking data
@focus
Scenario: Read list of data
Given I open up the page
Then I see more than one row of data
I've tried changing @focus to @skip and @skipped but didnt work