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

graph.feature « project « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b25c73ad87084046420f141e8daa543a905271cf (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
Feature: Project Graph
  Background:
    Given I sign in as a user
    And I own project "Shop"

  @javascript
  Scenario: I should see project graphs
    When I visit project "Shop" graph page
    Then page should have graphs

  @javascript
  Scenario: I should see project languages & commits graphs on commits graph url
    When I visit project "Shop" commits graph page
    Then page should have commits graphs
    Then page should have languages graphs

  @javascript
  Scenario: I should see project ci graphs
    Given project "Shop" has CI enabled
    When I visit project "Shop" CI graph page
    Then page should have CI graphs

  @javascript
  Scenario: I should see project languages & commits graphs on language graph url
    When I visit project "Shop" languages graph page
    Then page should have languages graphs
    Then page should have commits graphs

  @javascript
  Scenario: I should see project languages & commits graphs on charts url
    When I visit project "Shop" chart page
    Then page should have languages graphs
    Then page should have commits graphs