Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix spinach tests introduced by 07101cfab61f28c6328efebea98f018ab8356cdd | Kamil Trzcinski | 2015-10-14 | 1 | -5/+5 |
| | |||||
* | Show CI status on Your projects page and Starred projects pageci-status-projects-page | Dmitriy Zaporozhets | 2015-09-24 | 1 | -1/+3 |
| | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | Fix tests and last push widgetseparate-activity | Dmitriy Zaporozhets | 2015-08-25 | 2 | -6/+10 |
| | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | Import sources: show only enabled sources | Artem Sidorenko | 2015-08-20 | 1 | -1/+18 |
| | |||||
* | Fix tests for group leave feature | Dmitriy Zaporozhets | 2015-05-29 | 1 | -1/+2 |
| | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | Revert help link tests removal | Dmitriy Zaporozhets | 2015-04-15 | 1 | -0/+5 |
| | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | fix failing test | Hannes Rosenögger | 2015-04-13 | 1 | -0/+1 |
| | |||||
* | The help link has been removed. The commit removes the test for it. | Hannes Rosenögger | 2015-04-13 | 1 | -6/+0 |
| | |||||
* | Fix tests and unassigned filter for issues. Updated CHANGELOG | Dmitriy Zaporozhets | 2015-03-27 | 2 | -0/+4 |
| | |||||
* | Fix "Import projects from" button to show the correct instructions | Stan Hu | 2015-03-22 | 1 | -0/+13 |
| | | | | Closes #1267 | ||||
* | Fix tests for project removing | Dmitriy Zaporozhets | 2015-03-10 | 1 | -5/+0 |
| | |||||
* | Remove projects page from dashboard | Dmitriy Zaporozhets | 2015-03-10 | 1 | -9/+0 |
| | |||||
* | Fix test for creating group from dashboard | Dmitriy Zaporozhets | 2015-03-10 | 1 | -0/+8 |
| | |||||
* | Add tests for starred projects page | Dmitriy Zaporozhets | 2015-03-09 | 1 | -0/+12 |
| | |||||
* | Fix dashboard groups test | Dmitriy Zaporozhets | 2015-03-08 | 1 | -1/+1 |
| | |||||
* | Move Profile groups tests to Dashboard group tests | Dmitriy Zaporozhets | 2015-03-08 | 1 | -0/+48 |
| | |||||
* | Fix specs. | Douwe Maan | 2015-02-13 | 1 | -2/+2 |
| | |||||
* | Make Spinach test names consistent | Ciro Santilli | 2014-10-05 | 6 | -6/+6 |
| | | | | | | | - do not add Feature to feature titles - titleize feature titles - put steps on the same path as .feature files - make feature titles match their path | ||||
* | Awesome shortcuts for GitLab | Robert Schilling | 2014-09-01 | 1 | -0/+21 |
| | |||||
* | Improve search tests | Dmitriy Zaporozhets | 2014-08-27 | 1 | -10/+0 |
| | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | Splitted the Spinach tests to prevent time-outs | Jeroen van Baarsen | 2014-06-04 | 9 | -0/+9 |
| | | | | Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | ||||
* | Headers have ids and link to their own id. | Ciro Santillli | 2014-02-11 | 1 | -0/+8 |
| | |||||
* | Tests for Dashboard#issues filter | Dmitriy Zaporozhets | 2013-12-24 | 1 | -1/+11 |
| | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | Add tests to Dashboard#merge_requests filter | Dmitriy Zaporozhets | 2013-12-24 | 1 | -2/+12 |
| | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | Archiving old projects; archived projects aren't shown on dashboard | Steven Thonus | 2013-12-16 | 1 | -0/+16 |
| | | | | | | | | | | | | | | features for archive projects abilities for archived project other abilities for archive projects only limit commits and merges for archived projects ability changed to prohibited actions on archived projects added spec and feature tests for archive projects changed search bar not to include archived projects | ||||
* | Merge Request on forked projects | Izaak Alpert | 2013-07-17 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The good: - You can do a merge request for a forked commit and it will merge properly (i.e. it does work). - Push events take into account merge requests on forked projects - Tests around merge_actions now present, spinach, and other rspec tests - Satellites now clean themselves up rather then recreate The questionable: - Events only know about target projects - Project's merge requests only hold on to MR's where they are the target - All operations performed in the satellite The bad: - Duplication between project's repositories and satellites (e.g. commits_between) (for reference: http://feedback.gitlab.com/forums/176466-general/suggestions/3456722-merge-requests-between-projects-repos) Fixes: Make test repos/satellites only create when needed -Spinach/Rspec now only initialize test directory, and setup stubs (things that are relatively cheap) -project_with_code, source_project_with_code, and target_project_with_code now create/destroy their repos individually -fixed remote removal -How to merge renders properly -Update emails to show project/branches -Edit MR doesn't set target branch -Fix some failures on editing/creating merge requests, added a test -Added back a test around merge request observer -Clean up project_transfer_spec, Remove duplicate enable/disable observers -Ensure satellite lock files are cleaned up, Attempted to add some testing around these as well -Signifant speed ups for tests -Update formatting ordering in notes_on_merge_requests -Remove wiki schema update Fixes for search/search results -Search results was using by_project for a list of projects, updated this to use in_projects -updated search results to reference the correct (target) project -udpated search results to print both sides of the merge request Change-Id: I19407990a0950945cc95d62089cbcc6262dab1a8 | ||||
* | Remove dash projects search test | Dmitriy Zaporozhets | 2013-06-19 | 1 | -4/+0 |
| | |||||
* | Move search to separate layout | Dmitriy Zaporozhets | 2013-06-06 | 1 | -5/+0 |
| | |||||
* | Fixing specs & spinach since Wiki model does not exists any more | Dmitriy Zaporozhets | 2013-04-10 | 1 | -5/+0 |
| | |||||
* | Tests for dashboard projects fixed | Andrew8xx8 | 2013-03-12 | 1 | -5/+3 |
| | |||||
* | Tests improved | Andrew8xx8 | 2013-03-12 | 1 | -1/+7 |
| | |||||
* | feature tests | Dmitriy Zaporozhets | 2013-01-27 | 1 | -0/+8 |
| | |||||
* | Fixing team tests | Dmitriy Zaporozhets | 2013-01-25 | 1 | -6/+0 |
| | |||||
* | JavaScript removed from dashboard#index template. | AlexDenisov | 2013-01-09 | 1 | -0/+1 |
| | |||||
* | Typo fixed | Alex Denisov | 2013-01-09 | 1 | -1/+1 |
| | |||||
* | Event filters stores at cookies. | Alex Denisov | 2013-01-09 | 1 | -0/+19 |
| | |||||
* | Tests on events filtering added | Alex Denisov | 2013-01-09 | 1 | -1/+18 |
| | |||||
* | Tests on EventFilters added | Alex Denisov | 2013-01-09 | 1 | -0/+14 |
| | |||||
* | Speedup dashboard via loading events with ajax | Dmitriy Zaporozhets | 2013-01-07 | 1 | -0/+3 |
| | |||||
* | Spinach test added | Alex Denisov | 2012-11-28 | 1 | -0/+6 |
| | |||||
* | Wiki search | Ilya Baryshev | 2012-10-16 | 1 | -0/+5 |
| | | | | Very basic, using LIKE, and no search snippets. | ||||
* | Spianch test for group dashboard | Dmitriy Zaporozhets | 2012-10-03 | 1 | -0/+5 |
| | |||||
* | actually fix the build | Nihad Abbasov | 2012-10-02 | 1 | -2/+2 |
| | |||||
* | Add features for checking the "Active Tab" across various pages | Robert Speicher | 2012-09-26 | 1 | -0/+28 |
| | |||||
* | rewrite dashboard feature steps using spinach | Nihad Abbasov | 2012-09-10 | 4 | -17/+14 |
| | |||||
* | User left project event added | Alex Denisov | 2012-09-10 | 1 | -2/+7 |
| | |||||
* | User joined project event added | Alex Denisov | 2012-09-09 | 1 | -1/+6 |
| | |||||
* | Remove duplicate coverage in spec requests. All features should be covered ↵ | Dmitriy Zaporozhets | 2012-08-03 | 1 | -1/+1 |
| | | | | in cucumber | ||||
* | Better cucumber coverage for dashboard | randx | 2012-07-29 | 2 | -0/+16 |
| | |||||
* | Cucumber -> Dashboard features | randx | 2012-06-16 | 2 | -0/+29 |
| |