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-08-03Use Projects::UpdateService to archive projectsJames Ramsay
System hooks were not being triggered when projects were archived or unarchived. Reuse the Projects::UpdateService to automatically trigger system hooks and increase code reuse.
2018-07-05Enable Capybara/FeatureMethods copWinnie Hellmann
2018-06-15Fix flakey time-senstive group filter specsEric Eastwood
This passed previously because the filtered group search is debounced by 0.5s. The test cleared the input, entered `group1`, cleared the input, entered nothing, and the all of groups are still listed because of the 0.5s debounce hasn't triggered and the test passes before anything is actually filtered. Even if we assert that the list is filtered before clearing the input, the test still fails because the nature of the `fill_in 'filter', with: ""` method is that ["if you're setting the value to "", no keys are ever actually sent, hence no [`input`] event"](https://github.com/teamcapybara/capybara/issues/203#issuecomment-557281) and we never filter back to everything in the list. So the solution is two-fold, add in the assertions that the list is actually filtered after each step. Then use a method that fills the input with proper events fired.
2018-04-20Fix new menu specClement Ho
2017-12-25Move explore groups spinach test to RSpecSemyon Pupkov
https://gitlab.com/gitlab-org/gitlab-ce/issues/23036
2017-10-23Merge branch 'master' into sh-headless-chrome-supportMike Greiling
* master: (297 commits) Fix deletion of container registry or images returning an error The fog-aliyun gem had a bug in v0.1.0 for file storage creation/update. This merge requests update the gem to v0.2.0 which contains the fix: Decrease ABC threshold to 54.28 Update VERSION to 10.2.0-pre Update CHANGELOG.md for 10.1.0 Document `CI_SHARED_ENVIRONMENT` and `CI_DISPOSABLE_ENVIRONMENT` Fix the external URLs generated for online view of HTML artifacts Use title as placeholder instead of issue title for reusability Fix failure in current_settings_spec.rb Clarify the difference between project_update and project_rename URI decode Page-Title header to preserve UTF-8 characters Update Gitaly version to v0.49.0 Decrease Perceived Complexity threshold to 14 Resolve "Remove help text regarding group issues on group issues page (and group merge requests page)" Force non diff resolved discussion to display when collapse toggled Added submodule support in multi-file editor add note about after_script being run separately Check for element before evaluate_script Merge branch 'master-i18n' into 'master' Update Prometheus gem to fix problems with other files overwriting current file ...
2017-10-17Merge branch 'bvl-group-trees' into 'master'Douwe Maan
Show collapsible tree on the project show page Closes #30343 See merge request gitlab-org/gitlab-ce!14055
2017-10-13Merge branch 'master' into sh-headless-chrome-supportMike Greiling
* master: (104 commits) Update licenses fix a wrong method call in the refactor fix a whitespace fix for discussion Update templates via: Update doc accordingly to: Cache issuable template names Fix the format of rugged alternate directory list Match full file path in FileDetector Fixes from CSS refactor Resolve "Prometheus service page shows error" Explicit state integration deletion Move all API authentication code to APIGuard Shorten example translation for inclusive language [ci-skip] add changelog fix the merger override to remove source branch add spec Removed d3.js from the users and graphs bundle Cleanup data-page attribute after each Karma test Update template description wording ...
2017-10-11Replace the 'features/explore/projects.feature' spinach test with an rspec ↵Vitaliy @blackst0ne Klachkov
analog
2017-10-10Merge branch 'master' into bvl-group-treesBob Van Landuyt
2017-10-09Merge branch 'master' into sh-headless-chrome-supportMike Greiling
* master: (113 commits) Introduce new hook data builders for Issue and MergeRequest Don't create todos for old issue assignees Start adding Gitlab::HookData::IssuableBuilder Include the changes in issuable webhook payloads Rename the `codeclimate` job to `codequality` Don't show an "Unsubscribe" link in snippet comment notifications Add QA::Scenario::Gitlab::Group::Create Removes CommitsList from global namespace Fix wiki empty page translation namespace not being removed Fixes mini graph in commit view Fix link to new i18n index page Update i18n docs Move i18n/introduction to i18n/index Resolve "Simple documentation update - backup to restore in restore section" Remove AjaxLoadingSpinner and CreateLabelDropdown from global namespace Move cycle analytics banner into a vue file Updated Icons + Fix for Collapsed Groups Angle Don't create fork networks for root projects that are deleted Remove executable permissions on images to make docs lint happy Sync up hard coded DN class in migration ...
2017-10-06Remove unnecessary testkushalpandya
2017-10-05Update feature specs for updated group listsBob Van Landuyt
2017-10-04Groups tree enhancements for Groups Dashboard and Group HomepageKushal Pandya
2017-10-04Reuse the groups tree for explore and dashboard.Bob Van Landuyt
2017-08-24Merge branch 'master' into sh-headless-chrome-supportStan Hu
2017-08-22Add `:nested_groups` metadata to two subgroup-related specsRobert Speicher
Prevents these from failing on MySQL. Closes #36811 and #36812.
2017-08-10Merge branch 'master' into sh-headless-chrome-supportStan Hu
2017-08-03Merge branch 'master' into sh-headless-chrome-supportStan Hu
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-07-27Use `empty_project` where possible in spec/features/exploreRobert Speicher
2017-07-27Remove superfluous type defs in specsKeifer Furzland
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-22Create guest users only when necessary rather than for every specRobert Speicher
These are two examples of a top-level `before` block doing too much. Only specific specs cared about these guest users, but we were creating them and their `ProjectMember` records for every single spec that ran.
2017-07-06Auto-correct ProjectPathHelper violationsRobert Speicher
2017-06-29Change gitlab_sign_in to sign_in where possibleRobert Speicher
2017-06-21Merge branch 'master' into sh-headless-chrome-supportStan Hu
2017-06-20Change `login_as` uses to `gitlab_sign_in`Robert Speicher
2017-06-17Convert variants of trigger('click') -> clickStan Hu
2017-06-08Added more negative checks for public projectTim Zallmann
2017-06-08Fix End Syntax ErrorTim Zallmann
2017-06-08Enhancing Spec's with negative casesTim Zallmann
2017-06-07Fixed spec test syntax errorsTim Zallmann
2017-06-07Converting Tests to Spec TestsTim Zallmann
2017-05-23Use wait_for_requests to wait all JS requestOswaldo Ferreira
2017-05-02Better Explore Groups viewLuke "Jared" Bennett
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-03-24Adding non_archived scope for counting projectsNaveen Kumar
2017-03-02Improve groups list specsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-03-02Update JS to use new standardsFilipa Lacerda
2017-03-01Add filter and sorting to dashboard groups pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>