-
Notifications
You must be signed in to change notification settings - Fork 166
Add ensure_user_stays_in_vendor_bucket to all the controllers.
#11425
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
2814abb
50848fd
bcb642b
49f6dfa
0b16314
1ff9ff7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,7 @@ | |
|
|
||
| before do | ||
| allow(FeatureManagement).to receive(:doc_capture_polling_enabled?).and_return(true) | ||
| allow(IdentityConfig.store).to receive(:socure_enabled).and_return(true) | ||
| allow(IdentityConfig.store).to receive(:use_vot_in_sp_requests).and_return(true) | ||
| allow(Telephony).to receive(:send_doc_auth_link).and_wrap_original do |impl, config| | ||
| @sms_link = config[:link] | ||
|
|
@@ -44,7 +45,11 @@ | |
| # Confirm that jumping to LinkSent page does not cause errors | ||
| visit idv_link_sent_url | ||
| expect(page).to have_current_path(root_url) | ||
| visit idv_hybrid_mobile_document_capture_url | ||
|
|
||
| # Confirm that we end up on the LN / Mock page even if we try to | ||
| # go to the Socure one. | ||
| visit idv_hybrid_mobile_socure_document_capture_url | ||
| expect(page).to have_current_path(idv_hybrid_mobile_document_capture_url) | ||
|
Comment on lines
+51
to
+52
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we add this quick test to the other document capture feature tests (standard, standard socure, and hybrid socure)?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added to the standard flow feature spec. Will bring up Socure feature specs as a 16th minute today. |
||
|
|
||
| # Confirm that clicking cancel and then coming back doesn't cause errors | ||
| click_link 'Cancel' | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.