summaryrefslogtreecommitdiff
path: root/spec/features
Commit message (Collapse)AuthorAgeFilesLines
* Updated rspec to rspec 3.x syntaxJeroen van Baarsen2015-02-1223-636/+645
| | | | Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
* Fix testsDmitriy Zaporozhets2015-02-052-11/+13
|
* Merge branch 'redirect-sign_up' into 'master'Dmitriy Zaporozhets2015-02-051-9/+4
|\ | | | | | | | | | | | | | | Redirect signup page to signin page. Resolves #1916. See merge request !1468
| * Redirect signup page to signin page.Douwe Maan2015-02-051-9/+4
| | | | | | | | Resolves #1916.
* | Fix testsDmitriy Zaporozhets2015-02-041-1/+1
|/
* Adds link to milestone and keeping resource context on smallerJason Blanchard2015-02-031-2/+3
| | | | viewports for issues and merge requests
* Fix random failing testDmitriy Zaporozhets2015-01-271-1/+1
|
* Merge pull request #8585 from duduribeiro/fix_email_in_ssh_help_pageDmitriy Zaporozhets2015-01-191-0/+13
|\ | | | | Fix the email variable substituation in ssh help page
| * Change to single-quoted strings in help_pages_specCarlos Ribeiro2015-01-181-4/+4
| |
| * Fix the email variable substituation in ssh help pageCarlos Ribeiro2015-01-151-0/+13
| |
* | Fix tests for edited_ago helpersDmitriy Zaporozhets2015-01-181-2/+2
|/
* Remove password strength indicatorJacob Vosmaer2015-01-151-1/+1
| | | | | | | | We were having the following issues: - the indicator would sometimes stay red even if the password that was entered was long enough; - the indicator had a middle yellow signal: what does that mean? - the red/green backgrounds were not color-blind-friendly.
* Comment broken test because I dont have time to improve itDmitriy Zaporozhets2015-01-151-7/+8
|
* Fix specsDmitriy Zaporozhets2015-01-151-10/+5
|
* Finally fix stuff related to dynamic configDmitriy Zaporozhets2015-01-082-3/+3
|
* make sure the user.name is escapedJeroen van Baarsen2015-01-041-2/+7
| | | | Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
* Merge branch 'master' into sidebar-navDmitriy Zaporozhets2014-12-211-9/+14
|\ | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: app/views/layouts/group.html.haml
| * Merge branch 'upstream-master' into markdown-previewVinnie Okada2014-12-073-8/+62
| |\ | | | | | | | | | | | | Conflicts: spec/routing/project_routing_spec.rb
| * | Fix test assertionsVinnie Okada2014-10-211-2/+2
| | | | | | | | | | | | | | | Make sure we're asserting the correct thing when testing visible and invisible DOM elements.
| * | Fix houndci warningsVinnie Okada2014-10-181-4/+4
| | |
| * | Fix Markdown preview testsVinnie Okada2014-10-181-1/+0
| | | | | | | | | | | | | | | Update Spinach tests for Markdown previews for the new-ish tab UI that replaced the old preview/edit toggle button.
| * | Refactor Markdown preview testsVinnie Okada2014-10-181-9/+15
| | | | | | | | | | | | | | | | | | Create a new shared module for common issue/merge request behavior, use `expect` syntax instead of `should`, and avoid `visible: false` in the `have_css` matcher.
| * | Add Markdown preview to more formsVinnie Okada2014-10-151-6/+6
| | | | | | | | | | | | | | | Enable Markdown previews when creating and editing issues, merge requests, and milestones, and when editing notes.
* | | Css/views cleanup after layout restyleDmitriy Zaporozhets2014-12-211-1/+1
| |/ |/| | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Feature: atom feed for user activityDmitriy Zaporozhets2014-12-041-0/+43
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Merge branch 'feature_password_strength_indicator' into 'master'Dmitriy Zaporozhets2014-10-301-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a password strength indicator to SIGN UP and PROFILE pages Fixes #1647 Added a password strength indicator to the sign up page. You can see how it looks in the following screenshot. In the sign up page, it checks if the password contains the username and alerts the user about it. If the user still wants to proceed with creating his account, nothing will stop him. This is merely a message. The indicator changes the input background color based on the strength like this: ![new_full](https://dev.gitlab.org/uploads/gitlab/gitlabhq/0e6da27cfe/new_full.png) The password strength indicator can also be found in the profile edit page. It functions in almost the exact same way, with the exception that it doesn't check if the password contains the username. ![edit_full](https://dev.gitlab.org/uploads/gitlab/gitlabhq/f73001539e/edit_full.png) There are tests included. /cc @job See merge request !1227
| * | Updated the IDs of the fields, so that it wouldn't mess with many testsPatricio Cano2014-10-221-1/+1
| |/ | | | | | | Updated some tests to match new IDs
* | Fix testsDmitriy Zaporozhets2014-10-281-9/+11
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Merge branch 'api-project-delete' of https://gitlab.com/mr-vinn/gitlab-ce ↵Dmitriy Zaporozhets2014-10-281-0/+9
|\ \ | |/ |/| | | | | | | | | | | | | into mr-vinn/gitlab-ce-api-project-delete Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: spec/features/projects_spec.rb
| * Add option to keep repo on project deleteVinnie Okada2014-10-071-1/+6
| | | | | | | | | | | | | | | | | | Update the project API controller to use `Projects::DestroyService` instead of calling `Project#destroy` directly. Also add an optional parameter, `:keep_repo`, that allows a project to be deleted without deleting the repository, wiki, and satellite from disk.
* | Improve project remove specDmitriy Zaporozhets2014-10-081-2/+6
|/ | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Remove unnecessary page. from tests.Ciro Santilli2014-09-265-25/+25
|
* Fix security testsDmitriy Zaporozhets2014-09-253-3/+3
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Replace javascript:; links with buttons.Ciro Santilli2014-09-221-5/+10
|
* Increase atom feed test coverage. Prevent 500 error if description is missingDmitriy Zaporozhets2014-09-201-0/+29
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Fix testsDmitriy Zaporozhets2014-08-071-139/+151
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Fix failing spec.Ciro Santilli2014-07-171-2/+2
|
* Remove rails observers from applicationDmitriy Zaporozhets2014-06-174-16/+7
|
* Remove failing test on travis+pgDmitriy Zaporozhets2014-06-141-15/+0
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Delete wall notes testsDmitriy Zaporozhets2014-06-133-33/+0
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Test for milestone changed commentDmitriy Zaporozhets2014-06-101-1/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Fix group projects fetchDmitriy Zaporozhets2014-05-291-0/+12
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Fix specs. Fix note form reset after submitDmitriy Zaporozhets2014-05-244-34/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Add missing feature flag to mr notes specDmitriy Zaporozhets2014-05-221-7/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Split feature tests out to different build jobJeroen van Baarsen2014-04-1323-23/+23
|
* Proposal for split testingJeroen van Baarsen2014-04-111-1/+1
|
* Merge pull request #6557 from tsigo/faster-merge-request-featuresDmitriy Zaporozhets2014-03-191-28/+21
|\ | | | | Speed up features/notes_on_merge_requests_spec
| * Speed up features/notes_on_merge_requests_specRobert Speicher2014-03-191-28/+21
| | | | | | | | | | | | | | | | | | | | | | | | This spec featured the slowest tests in the entire suite. After some debugging, the cause was found to be the large commit diff generated by comparing the stable and master branches. To fix this, the seed repository was modified to create a simple branch off of master that consists of three simple commits and minor changes. The spec was then updated to compare master to this branch instead of stable. The result is a spec group that runs in under 30 seconds, down from about 90.
* | Make use of project factory traitsRobert Speicher2014-03-194-10/+5
|/
* Added option to remove issue assignee on project issue page and issue edit pageJason Blanchard2014-03-021-0/+47
|