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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-07-20 21:08:46 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-07-20 21:08:46 +0300
commit1bf106b17275c87cf8baa199599f113f154a52fe (patch)
treed2d27696ddb236922b165fb41cafc975914fd24b /spec/features/registrations
parentb21276806d34b8cc0ec7ac7854ec62f70d408b3c (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/registrations')
-rw-r--r--spec/features/registrations/welcome_spec.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/spec/features/registrations/welcome_spec.rb b/spec/features/registrations/welcome_spec.rb
deleted file mode 100644
index 74320b69f19..00000000000
--- a/spec/features/registrations/welcome_spec.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe 'Welcome screen' do
- let(:user) { create(:user) }
-
- before do
- gitlab_sign_in(user)
-
- visit users_sign_up_welcome_path
- end
-
- it 'shows the email opt in' do
- select 'Software Developer', from: 'user_role'
- check 'user_email_opted_in'
- click_button 'Get started!'
-
- expect(user.reload.email_opted_in).to eq(true)
- end
-end