Welcome to mirror list, hosted at ThFree Co, Russian Federation.

todos.feature « dashboard « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e7b1b50d64d2ecd63b249cb73b0183f0a3c830b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@dashboard
Feature: Dashboard Todos
  Background:
    Given I sign in as a user
    And I own project "Shop"
    And "John Doe" is a developer of project "Shop"
    And "Mary Jane" is a developer of project "Shop"
    And "Mary Jane" owns private project "Enterprise"
    And I am a developer of project "Enterprise"
    And I have todos
    And I visit dashboard todos page

  @javascript
  Scenario: I mark todos as done
    Then I should see todos assigned to me
    And I mark the todo as done
    And I click on the "Done" tab
    Then I should see all todos marked as done

  @javascript
    Scenario: I filter by project
      Given I filter by "Enterprise"
      Then I should not see todos

  @javascript
    Scenario: I filter by author
      Given I filter by "John Doe"
      Then I should not see todos related to "Mary Jane" in the list

  @javascript
    Scenario: I filter by type
      Given I filter by "Issue"
      Then I should not see todos related to "Merge Requests" in the list

  @javascript
    Scenario: I filter by action
      Given I filter by "Mentioned"
      Then I should not see todos related to "Assignments" in the list