Feature: New users should see a pulsating CTA, to encourage them to explore the editor view
Scenario Outline: The prototype button should pulse
Given I am on project view page
And I have edit permissions for the project
And the project has <screenCount> screens
And I have <prototypeProjectCount> projects
Then the "Prototype" button should pulse
Examples:
| screenCount | prototypeProjectCount |
| 2 | 1 |
| 2 | 3 |
| 6 | 2 |
Scenario Outline: The prototype button should not pulse
Given I am on project view page
And I have edit permissions for the project
And the project has <screenCount> screens
And I have <prototypeProjectCount> projects
Then the "Prototype" button should not pulse
Examples:
| screenCount | prototypeProjectCount |
| 1 | 4 |
| 10 | 5 |
| 20 | 6 |