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

user_onboarding.rb « flow « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee595cae33899934ce16b036db74b6c4b0eec190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module QA
  module Flow
    module UserOnboarding
      extend self

      def onboard_user(wait: Capybara.default_max_wait_time)
        # Implemented in EE only
      end
    end
  end
end

QA::Flow::UserOnboarding.prepend_mod_with('Flow::UserOnboarding', namespace: QA)