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-19Backport line changes from EEMike Greiling
EE-specific line changes were introduced in the following MR: https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/12680 This change resolves most of them
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-06-05preventing blocked users and their PipelineSchdules from creating new Pipelinesdrew cimino
updated several specs and factories to accomodate new permissions
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-05-10Merge balsamiq fixture into raw file fixturesWinnie Hellmann
2019-05-10Merge PDF fixture into raw file fixturesWinnie Hellmann
2019-05-10Expose response variable for raw file fixturesWinnie Hellmann
2019-05-03Ignore PDF and balsamiq fixture filesWinnie Hellmann
(cherry picked from commit 1b33828811897b6a3f8a38044cc0839b87098d1f)
2019-04-25Move all static fixtures to static directoryWinnie Hellmann
2019-04-11Delete static_fixtures.rb for static HAML fixturesWinnie Hellmann
2019-04-05Rewrite related MRs widget with VueFatih Acet
This MR rewrites existing Related Merge Requests widget with Vue with reusing shared Related Issues components
2019-03-26Merge branch 'dm-md-css' into 'master'Annabel Dunstone Gray
Untangle Markdown/Diffs/Notes CSS mess See merge request gitlab-org/gitlab-ce!26493
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-26Remove .wiki and @md-typography mixin in favor of .md and .md-fileDouwe Maan
Before, the styling for `img:not(.emoji)`` was repeated between `.md:not(.use-csslab):not(.wiki)` (for comments and the Markdown preview), `.documentation.wiki` (for help pages), and `.issuable-details .description .wiki` (for MR and issue descriptions). In these places, we now simply use `.md`. Wherever we use `.md` but don't want this image styling (like wikis and blobs), `.md-file` is added.
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-03-20Merge branch 'winh-dequarantine-labels-autocomplete' into 'master'Kushal Pandya
Move gfm_autocomplete_spec.rb out of quarantine Closes #57995 and #56843 See merge request gitlab-org/gitlab-ce!25958
2019-03-19Do not delete files in spec/javascripts/fixtures/static/Winnie Hellmann
2019-03-19Remove static HAML fixtures from frontend testing guideWinnie Hellmann
2019-03-19Remove static JavaScript HAML fixturesWinnie Hellmann
Replace all HAML fixtures with the generated HTML files.
2019-03-19Simplify the JavaScriptFixturesHelpers moduleRémy Coutable
- Only storing fixtures in one place - This place changes whether we are in CE or EE We discovered with @winh that only fixtures located under spec/javascripts/fixtures are used, even in EE so there's no need to clean/create fixtures in ee/spec/javascripts/fixtures. Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-03-12Don't create EE-specific files when creating Emojis fixture filesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-03-11Merge branch 'winh-dequarantine-labels-autocomplete' into 'master'Phil Hughes
Move gfm_autocomplete_spec.rb out of quarantine Closes #57995 and #56843 See merge request gitlab-org/gitlab-ce!25542 (cherry picked from commit 2dcbc0fa5657ab5c4ed46c5c84b8674faec36ea8)
2019-03-07Fix for mismatch in EE on FIXTURE_PATHS to FIXTURE_PATHRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-03-07Merge branch 'ce-extract-ee-specific-code-for-spec/support' into 'master'Dmitriy Zaporozhets
[CE] Extract EE specific code for spec/support See merge request gitlab-org/gitlab-ce!25569
2019-03-07Moved all emojis to the public folderTim Zallmann
Created new emojis map in public folder Renamed folder to emojis Loading now the emojis from Localstorage or from Server Moved all emojis to the public folder Loading the emojis.json file now through AJAX Loads now the map in the web element instead when building the emoji tag Updated the custom Element Setup to modern method Fixed Emoji Karma Specs for async loading Loading now the emojis from Localstorage or from Server Loads now the map in the web element instead when building the emoji tag Fixed problem with FIXTURE_PATH for emojis fixtures Fixes Linting Error in gemojione.rake Fixed Emoji Karma Specs Fix static type check in gemojione and check if already registered Testing if the Emoji Support Check is failing Rspec Change of CLass Name, returning true on check to test Fixes failing Emoji RSpec Tests Moved Emojis into public/-/emojis/1/ Fixed Linting Errors in gl_emoji Fix to fixtures creation for emojis Fixed path spec for new subdirectory -/emojis Optimized emojis.json output Fix for Emoji Spec failure due to unicode dataset Better catch handling for emojis
2019-03-07Reduce differences in spec/support/helpers/javascript_fixtures_helpers.rbRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-03-05Revert "Merge branch 'winh-dequarantine-labels-autocomplete' into 'master'"Winnie Hellmann
This reverts merge request !25542
2019-02-27Add JSON fixture for labels autocomplete sourceWinnie Hellmann
2019-02-21Make fixtures/u2f.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/snippet.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/projects.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/merge_requests.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/issues.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/groups.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/deploy_keys.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/commit.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/blob.rb deterministicWinnie Hellmann
2019-01-10Addressing feedback from most recent reviews.Scott Escue
2019-01-10Updating OAuthRememberMe to use new common utility functions when ↵Scott Escue
manipulating query parameters on OAuth buttons. This ensures the 'remember_me' parameter is safely added and removed when other query parameters are present.
2019-01-10Addressing peer review feedback.Scott Escue
Replacing inline JS with ES 2015 functions included in pages/sessions/new. Also applying suggested server-side syntax improvements to OmniAuthCallbacksController.
2019-01-04Add config_options|variables to BuildMetadataKamil Trzciński
These are data columns that store runtime configuration of build needed to execute it on runner and within pipeline. The definition of this data is that once used, and when no longer needed (due to retry capability) they can be freely removed. They use `jsonb` on PostgreSQL, and `text` on MySQL (due to lacking support for json datatype on old enough version).
2018-12-21convert specs in javascripts/ and support/ to new syntaxJasper Maes
2018-11-07Add Vue mixin for delayed job timersWinnie Hellmann
2018-10-15Prioritize group settings, improve panel titles, disable submit without changesLuke Bennett
2018-09-26Resolve "Commit details are not displayed when reviewing an MR commit by commit"Paul Slaughter