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
2019-07-19Move frontend fixtures into spec/frontendMike Greiling
Moves every fixture source file from spec/javascripts to spec/frontend
2019-07-19Resolve annoying deprecation warningsMike Greiling
DEPRECATION WARNING: The success? predicate is deprecated and will be removed in Rails 6.0. Please use successful? ...
2019-05-10Remove trailing empty linesWinnie Hellmann
2019-05-10Remove unused fixture_file_name parametersWinnie Hellmann
for f in $(find spec/javascripts/fixtures/ -name '*.rb') do sed -E -e 's/(, ){0,1}(fixture_file_name| example\.description)(, ){0,1}//' < $f > $f.tmp; mv $f.tmp $f done
2019-05-10Remove example block parametersWinnie Hellmann
for f in $(find spec/javascripts/fixtures/ -name '*.rb') do sed 's/do |example|/do/' < $f > $f.tmp; mv $f.tmp $f done
2019-05-10Remove duplicate store_frontend_fixture() callsWinnie Hellmann
for f in $(find spec/javascripts/fixtures/ -name '*.rb') do grep -v store_frontend_fixture < $f > $f.tmp; mv $f.tmp $f done
2019-03-26Merge branch 'winh-remove-sushi' into 'master'Winnie Hellmann
Remove .raw from JavaScript fixture file names Closes #59201 See merge request gitlab-org/gitlab-ce!26430 (cherry picked from commit 79a45f7f02939a1c2fc1f378e43ec9b96630f918)
2019-03-22Revert "Merge branch 'winh-remove-sushi' into 'master'"Filipa Lacerda
This reverts merge request !26430
2019-03-21Remove .raw from JavaScript fixture file namesWinnie Hellmann
There is nothing more to say but "Commits that change 30 or more lines across at least three files must describe these changes in the commit body"
2019-02-21Make fixtures/merge_requests.rb deterministicWinnie Hellmann
2018-12-21convert specs in javascripts/ and support/ to new syntaxJasper Maes
2018-07-06Resolve "MRs are showing some discussions as unresolved"Simon Knox
2018-02-28Render MR Notes with Vue with behind a cookieFatih Acet
2017-09-24Hide close MR button after merge without reloading pageJacopo
After merging a MR the close button is hidden, without reloading the page.
2017-09-04Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceJose Ivan Vargas
2017-08-30Cleaning up repositories for javascript fixture specs to work correctlyGabriel Mazetto
We need to cleanup after each execution so we can still re-use the same paths and prevent collision with the on disk validation
2017-08-12Merge branch 'master' into issue-discussions-refactorFilipa Lacerda
* master: (66 commits) fix confidential border issue as well as confidential styles leaking on new MR Migrate force push check to Gitaly Add option to disable project export on instance Better categorize test coverage results Add option to disable project export on instance - db changes Better caching and indexing of broadcast messages Include the `is_admin` field in the `GET /users/:id` API when current user is an admin Document rspec-retry and rspec-flaky Fix cop description Retrieve and sync flaky specs report from and to S3 Use a new RspecFlakyListener to detect flaky specs Fix formatting of patch_versions.md [skip ci] Enable Timecop safe mode Show error message for API 500 error in tests, and Fix merge request diff deserialisation when too_large was absent Delete correct key from `session` after authenticating using U2F Bumps omniauth-ldap gem version to 2.0.4 Pending delete projects no longer return 500 error in Admins projects view Do not run the `ee_compat_check` job for stableish branches Update gitlab.po: Missing 'r' in "Fouché" that comes from "Fourcher" verb. ...
2017-08-11Enable the RSpec/HookArgument cop and auto-correct offensesRobert Speicher
2017-08-10Change fixtures of old testsFilipa Lacerda
2017-08-01Ensure all project factories use `:repository` trait or `:empty_project`Robert Speicher
2017-06-29Split up MergeRequestsControllerDouwe Maan
2017-06-21Fix linking to line number on parallel diff creating empty discussionEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/34010
2017-06-20Fix MR "Changes" diff note up arrow to edit last noteEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/33868 While in a MR "Changes" tab looking at some diff note discussions. Clicking reply and pressing the up-arrow should edit your last comment in that discussion. I suspect this regressed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/11173/diffs#f4bb984ec495c5cb58516785c62978f5209c39b4_179_178 where we changed the selector
2017-05-08Fixed UP arrow key not editing last comment in discussionPhil Hughes
Closes #31348
2017-04-13tests for success and failure of deleting branch from MR pageSimon Knox
2017-03-28Reset container width when switching to pipelines MR tabEric Eastwood
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/29539
2017-02-24Use Namespace#full_path instead of #path where appropriateDouwe Maan
2017-02-13Replace static fixture for merge_request_tabs_spec.js (!9172)winniehell