summaryrefslogtreecommitdiff
path: root/features/steps
Commit message (Collapse)AuthorAgeFilesLines
...
* | Don't expect underlying DB data to be updated in feature specRémy Coutable2017-04-261-2/+1
|/ | | | | | | Only assert that the page shows something, this waits for requests to be completed. Signed-off-by: Rémy Coutable <remy@rymai.me>
* Fix scoping issues with Spinach tests (e.g. ↵sh-fix-spinach-5-10-testsStan Hu2017-04-241-1/+1
| | | | https://gitlab.com/gitlab-org/gitlab-ce/builds/14929499)
* Merge branch 'rs-rename-login_as' into 'master' Rémy Coutable2017-04-244-10/+47
|\ | | | | | | | | Except where necessary, use `sign_in` over `login_as` in features See merge request !10320
| * Except where necessary, use `sign_in` over `login_as` in featuresRobert Speicher2017-04-194-10/+47
| |
* | Adding animation for all dropdownNur Rony2017-04-212-3/+5
| |
* | Add Fork/Cancel confirmation to "Replace"/"Delete" buttons30637-replace-delete-buttons-get-fork-cancel-confirmationEric Eastwood2017-04-201-1/+0
| | | | | | | | Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/30637
* | Merge branch 'dz-refactor-create-members' into 'master' Douwe Maan2017-04-202-138/+4
|\ \ | | | | | | | | | | | | Refactor code that creates and destroys project/group members See merge request !10735
| * | Move some project/group members spinach tests to rspecdz-refactor-create-membersDmitriy Zaporozhets2017-04-172-138/+4
| | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | Refactor changing files in web UIDouwe Maan2017-04-201-1/+5
| |/ |/|
* | Add renderNote animation and added specLuke "Jared" Bennett2017-04-191-11/+0
| |
* | Added profile name to user dropdownDimitrie Hoekstra2017-04-191-2/+2
| |
* | Removes `Repository#version` method and testsdz-remove-repo-versionDmitriy Zaporozhets2017-04-171-6/+0
|/ | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Clear emoji search in awards menu after picking emoji27655-clear-emoji-search-after-selectionEric Eastwood2017-04-131-3/+3
| | | | Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/27655
* Merge branch 'master' into new-resolvable-discussionDouwe Maan2017-04-072-1/+10
|\
| * Merge branch 'dm-wait-for-pipeline' into 'master' Stan Hu2017-04-071-0/+9
| |\ | | | | | | | | | | | | | | | | | | Wait for AJAX requests to complete so they don't blow up if they are only handle… Closes #30633 See merge request !10559
| | * Actually include WaitForAjax!Douwe Maan2017-04-071-0/+1
| | |
| | * Wait for AJAX requests to complete so they don't blow up if they are only ↵Douwe Maan2017-04-071-0/+8
| | | | | | | | | | | | handled after DatabaseCleaner has already run
| * | Put back usernames in activity and profile feedAnnabel Dunstone Gray2017-04-071-1/+1
| |/
* | Merge branch 'master' into new-resolvable-discussionLuke "Jared" Bennett2017-04-071-1/+2
|\ \ | |/
| * Update project build status cache when transitioningBob Van Landuyt2017-04-071-1/+2
| |
* | Merge branch 'update-droplab-to-webpack-version' into new-resolvable-discussionLuke "Jared" Bennett2017-04-0719-47/+59
|\ \ | |/
| * Merge branch 'menu-shortcut' into 'master' Jacob Schatz2017-04-061-2/+2
| |\ | | | | | | | | | | | | | | | | | | Add keyboard shortcuts to main menu. Closes #30036 See merge request !10243
| | * Fix broken spinach testFilipa Lacerda2017-04-061-2/+2
| | |
| * | Fixed button capitalisation for Projects in viewsJose Ivan Vargas Lopez2017-04-0615-36/+48
| | |
| * | Fix rspec and spinach testsJose Ivan Vargas2017-04-062-5/+5
| | |
| * | Groups section capitalization fixJose Ivan Vargas Lopez2017-04-061-2/+2
| | |
| * | Dashboard section capitalization fixJose Ivan Vargas Lopez2017-04-061-2/+2
| |/
* | Merge branch 'master' into new-resolvable-discussionDouwe Maan2017-04-064-4/+14
|\ \ | |/ | | | | | | | | # Conflicts: # app/assets/javascripts/filtered_search/dropdown_hint.js # app/views/shared/issuable/_search_bar.html.haml
| * Merge branch '29128-profile-page-icons' into 'master' Filipa Lacerda2017-04-061-1/+1
| |\ | | | | | | | | | | | | | | | | | | Resolve "Add system note icons to profile page" Closes #29128 See merge request !10387
| | * Update commit icon; fix specs29128-profile-page-iconsAnnabel Dunstone Gray2017-04-031-1/+1
| | |
| * | Linking to edit file directlyEric Eastwood2017-04-061-1/+11
| | |
| * | Optimise trace handling code to use streaming instead of full readKamil Trzciński2017-04-062-2/+2
| | |
* | | Fix some specsDouwe Maan2017-04-051-0/+3
|/ /
* | Merge branch 'sh-fix-award-emoji-transient-spec' into 'master' Rémy Coutable2017-04-051-1/+3
|\ \ | | | | | | | | | | | | | | | | | | Potential fix for intermittent spec failure in award emoji specs Closes #30399 See merge request !10476
| * | Potential fix for intermittent spec failure in award emoji specssh-fix-award-emoji-transient-specStan Hu2017-04-051-1/+3
| | | | | | | | | | | | | | | | | | Hover and then click seems to make this work more reliably. Closes #30399
* | | MR empty stateLuke "Jared" Bennett2017-04-054-4/+7
|/ /
* | Don't use FFaker in factories, use sequences insteadRémy Coutable2017-04-031-2/+2
|/ | | | | | | 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>
* Add a wait_for_ajax call to ensure Todos page cleans up properlysh-fix-todos-spinach-failureStan Hu2017-04-021-0/+3
| | | | Potentially fixes intermittent failures such as https://gitlab.com/gitlab-org/gitlab-ce/builds/13484375
* Merge branch '23674-simplify-milestone-summary' into 'master' Jacob Schatz2017-03-291-1/+1
|\ | | | | | | | | | | | | Resolve "Simplify milestone summary" Closes #23674 See merge request !10096
| * update milestone page testsMike Greiling2017-03-251-1/+1
| |
* | Add shortcuts and counters to MRs and issues in navbarAnnabel Dunstone Gray2017-03-291-3/+3
| |
* | Fix link togglers jumping to topEric Eastwood2017-03-282-2/+2
| | | | | | | | Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/29414
* | Fix up emoji tests that should have failed :/Eric Eastwood2017-03-244-5/+5
|/ | | | | | | Some discussion, https://gitlab.slack.com/archives/C0GQHHPGW/p1490398531185144 -> MR to fix failing emoji test: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/10230
* Merge branch 'add-blob-copy-button' into 'master' Robert Speicher2017-03-161-2/+2
|\ | | | | | | | | Add copy button to blob header and use icon for Raw button See merge request !9878
| * Fix specadd-blob-copy-buttonDouwe Maan2017-03-161-2/+2
| |
| * Fix specDouwe Maan2017-03-161-1/+1
| |
* | Merge branch 'pages-multiple-ips-doc' into 'master' Kamil Trzciński2017-03-161-3/+3
|\ \ | | | | | | | | | | | | The GitLab Pages external-http and external-https arguments can be specified multiple times See merge request !9812
| * | The GitLab Pages external-http and external-https arguments can be specified ↵Nick Thomas2017-03-081-3/+3
| | | | | | | | | | | | multiple times
* | | Merge branch '27114-add-undo-mark-all-as-done-to-todos' into 'master' Filipa Lacerda2017-03-161-1/+5
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Add 'Undo mark all as done' to Todos Closes #27114 See merge request !9890
| * | | Add 'Undo mark all as done' to TodosJacopo2017-03-161-1/+5
| | |/ | |/| | | | | | | | | | | | | Added the ability to 'Undo mark all as done' todos marked as complete with 'Mark all as done' in the 'Todo' tab of the Todo dashboard. The operation undos only the todo previously marked as done with the 'Mark al as done' button.