diff options
author | Semyon Pupkov <mail@semyonpupkov.com> | 2018-03-10 15:49:18 +0500 |
---|---|---|
committer | Semyon Pupkov <mail@semyonpupkov.com> | 2018-03-14 13:36:44 +0500 |
commit | 7a916e122bd5d8c1b58492cad5adbeb683248650 (patch) | |
tree | 4b5d98c69ba341be94f889fe71b5c86a14a9197c /features/project | |
parent | 47b9854dac5d255f0ad68cb3310c66a7111b792e (diff) | |
download | gitlab-ce-7a916e122bd5d8c1b58492cad5adbeb683248650.tar.gz |
Replace project graphs spinach tests with RSpec analog
https://gitlab.com/gitlab-org/gitlab-ce/issues/23036
Diffstat (limited to 'features/project')
-rw-r--r-- | features/project/graph.feature | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/features/project/graph.feature b/features/project/graph.feature deleted file mode 100644 index b25c73ad870..00000000000 --- a/features/project/graph.feature +++ /dev/null @@ -1,33 +0,0 @@ -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 |