BigW Consortium Gitlab

labels.feature 570 Bytes
Newer Older
1 2 3 4 5 6
@labels
Feature: Labels
  Background:
    Given I sign in as a user
    And I own project "Shop"
    And project "Shop" has labels: "bug", "feature", "enhancement"
7
    When I visit project "Shop" labels page
8 9 10

  @javascript
  Scenario: I can subscribe to a label
11 12 13 14 15
    Then I should see that I am not subscribed to the "bug" label
    When I click button "Subscribe" for the "bug" label
    Then I should see that I am subscribed to the "bug" label
    When I click button "Unsubscribe" for the "bug" label
    Then I should see that I am not subscribed to the "bug" label