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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean McGivern <sean@mcgivern.me.uk>2016-11-08 12:31:43 +0300
committerSean McGivern <sean@mcgivern.me.uk>2016-11-08 12:31:43 +0300
commit55e0065b49d63f53c40876196d8f110e4eb3ea32 (patch)
tree60da0989e7b06d49f5510b63ba9e6ce9b16ac501 /features/steps/project
parenta6b4975724c50bc09206c0201f159c65e610859e (diff)
parent5569573a24efca76abede20370988a81d623e6a5 (diff)
Merge branch 'fix-404-on-network-when-entering-a-nonexistent-git-revision' into 'master'
Network page appear with an error message when entering nonexistent git revision Closes #2362 See merge request !7172
Diffstat (limited to 'features/steps/project')
-rw-r--r--features/steps/project/network_graph.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/features/steps/project/network_graph.rb b/features/steps/project/network_graph.rb
index 019b3124a86..ff9251615c9 100644
--- a/features/steps/project/network_graph.rb
+++ b/features/steps/project/network_graph.rb
@@ -109,4 +109,8 @@ class Spinach::Features::ProjectNetworkGraph < Spinach::FeatureSteps
find('button').click
end
end
+
+ step 'I should see non-existent git revision error message' do
+ expect(page).to have_selector '.flash-alert', text: "Git revision ';' does not exist."
+ end
end