gitlab-org--gitlab-foss/features/project/milestone.feature
Phil Hughes 45e5d12122 Fixed spinach tests
Removed a spinach test as it wasn't actually testing what it said it should be
2017-04-26 12:23:29 +01:00

16 lines
624 B
Gherkin

Feature: Project Milestone
Background:
Given I sign in as a user
And I own project "Shop"
And project "Shop" has labels: "bug", "feature", "enhancement"
And project "Shop" has milestone "v2.2"
And milestone has issue "Bugfix1" with labels: "bug", "feature"
And milestone has issue "Bugfix2" with labels: "bug", "enhancement"
@javascript
Scenario: Listing labels from labels tab
Given I visit project "Shop" milestones page
And I click link "v2.2"
And I click link "Labels"
Then I should see the list of labels
And I should see the labels "bug", "enhancement" and "feature"