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
AgeCommit message (Collapse)Author
2018-07-05Enable Capybara/FeatureMethods copWinnie Hellmann
2018-03-01Remove u2f webpack bundleMike Greiling
2018-01-03Move 2FA disable buttonGeorge Tsiolis
- Removed disable button from /profile/account - Added disable button to /profile/two_factor_auth - Changed 2FA breadcrumb from 'User Settings > Account > Account' to 'User Settings > Account > Two-Factor Authentication'
2017-10-04fix rubocopJose Ivan Vargas
2017-09-27fixed spec/features/u2f_spec.rbPhil Hughes
a lot of failures where because everything happens faster than rspec can detect on the page
2017-08-14Fix U2F spec in headless ChromeStan Hu
There were a number of issues with this spec: 1. The deletion of the U2F device needed an `accept_confirm` block 2. The "We heard back from your U2F device" message is shown only briefly before the JavaScript handler submits the form. The only way to fix this is to put a delay in the submission. 3. The "Remember Me" field can't be checked in step 2 for the same reason.
2017-06-20Change `logout` uses to `gitlab_sign_out`Robert Speicher
Change `logout_direct` uses to `gitlab_sign_out_direct`
2017-06-20Change `login_with` uses to `gitlab_sign_in`Robert Speicher
Change single `login_via` use to `gitlab_sign_in_via`
2017-06-20Change `login_as` uses to `gitlab_sign_in`Robert Speicher
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-05-23Use wait_for_requests to wait all JS requestOswaldo Ferreira
2017-04-21Unnecessary "include WaitForAjax" and "include ApiHelpers"Jacopo
Removed all the unnecessary include of `WaitForAjax` and `ApiHelpers` in the specs. Removed unnecessary usage of `api:true`
2017-04-06Fix rspec and spinach testsJose Ivan Vargas
2017-04-06Fixed rspec testsJose Ivan Vargas
2017-04-03Don't use FFaker in factories, use sequences insteadRémy Coutable
FFaker can generate data that randomly break our test suite. This simplifies our factories and use sequences which are more predictive. Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-12-27Improved the u2f flowLuke "Jared" Bennett
Added tests
2016-12-07fix: 24982- Remove'Signed in successfully' messagejnoortheen
After this change the sign-in-success flash message will not be shown refactor: set flash message to be nil while signing in test: changed tests to reflect removal of sign-in message refactor: adding signed_in message back See Merge Request !7837 issue#24982
2016-10-15Make UX upgrades to SignIn/Register views.Bryce Johnson
- Tab between register and sign in forms - Add individual input validation error messages - Validate username - Update many styles for all login-box forms
2016-09-02Pass the remember_me option into the u2f form and support it while ↵DJ Mountney
authenticating Matches the changes done for non-u2f two-factor auth
2016-08-18Add feature specs to cover naming and deleting U2F devices.Timothy Andrew
2016-08-13Fix `U2fSpec` for PhantomJS versions > 2.Timothy Andrew
- We weren't explicilty waiting for the page to load while navigating to the "Manage two-factor authentication" page. This was probably incidentally working for PhantomJS 1.x versions.
2016-07-14Add a U2F feature spec for multiple devices owned by the same user.Timothy Andrew
1. This scenario was previously tested for the registration flow, but not authentication.
2016-06-15Update `u2f_spec` to cover U2F being disabled until authenticator is set up.Timothy Andrew
2016-06-06Add feature specs covering U2F registration and authentication.Timothy Andrew