summaryrefslogtreecommitdiff
path: root/spec/javascripts/fixtures
Commit message (Collapse)AuthorAgeFilesLines
* Move frontend fixtures into spec/frontendMike Greiling2019-07-1955-2078/+2
| | | | | Moves every fixture source file from spec/javascripts to spec/frontend
* Backport line changes from EEMike Greiling2019-07-191-0/+2
| | | | | | | 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
* Resolve annoying deprecation warningsMike Greiling2019-07-1826-38/+38
| | | | | DEPRECATION WARNING: The success? predicate is deprecated and will be removed in Rails 6.0. Please use successful? ...
* preventing blocked users and their PipelineSchdules from creating new Pipelinesdrew cimino2019-06-041-1/+1
| | | | updated several specs and factories to accomodate new permissions
* Remove trailing empty lineswinh-simplify-frontend-fixturesWinnie Hellmann2019-05-102-6/+0
|
* Remove unused fixture_file_name parametersWinnie Hellmann2019-05-103-20/+20
| | | | | | | | 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
* Remove example block parametersWinnie Hellmann2019-05-1027-56/+56
| | | | | | | for f in $(find spec/javascripts/fixtures/ -name '*.rb') do sed 's/do |example|/do/' < $f > $f.tmp; mv $f.tmp $f done
* Remove duplicate store_frontend_fixture() callsWinnie Hellmann2019-05-1027-44/+0
| | | | | | | for f in $(find spec/javascripts/fixtures/ -name '*.rb') do grep -v store_frontend_fixture < $f > $f.tmp; mv $f.tmp $f done
* Merge balsamiq fixture into raw file fixturesWinnie Hellmann2019-05-102-18/+7
|
* Merge PDF fixture into raw file fixturesWinnie Hellmann2019-05-102-18/+7
|
* Expose response variable for raw file fixturesWinnie Hellmann2019-05-101-7/+8
|
* Ignore PDF and balsamiq fixture filesWinnie Hellmann2019-05-021-0/+2
| | | | (cherry picked from commit 1b33828811897b6a3f8a38044cc0839b87098d1f)
* Move all static fixtures to static directoryWinnie Hellmann2019-04-254-0/+0
|
* Delete static_fixtures.rb for static HAML fixturesWinnie Hellmann2019-04-113-30/+15
|
* Rewrite related MRs widget with Vue_acet-related-mrs-widget-rewriteFatih Acet2019-04-051-0/+58
| | | | | This MR rewrites existing Related Merge Requests widget with Vue with reusing shared Related Issues components
* Merge branch 'dm-md-css' into 'master'Annabel Dunstone Gray2019-03-261-1/+1
|\ | | | | | | | | Untangle Markdown/Diffs/Notes CSS mess See merge request gitlab-org/gitlab-ce!26493
| * Remove .wiki and @md-typography mixin in favor of .md and .md-fileDouwe Maan2019-03-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | 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.
* | Merge branch 'winh-remove-sushi' into 'master'Winnie Hellmann2019-03-2644-37/+38
|/ | | | | | | | | | Remove .raw from JavaScript fixture file names Closes #59201 See merge request gitlab-org/gitlab-ce!26430 (cherry picked from commit 79a45f7f02939a1c2fc1f378e43ec9b96630f918)
* Revert "Merge branch 'winh-remove-sushi' into 'master'"Filipa Lacerda2019-03-2243-37/+36
| | | This reverts merge request !26430
* Remove .raw from JavaScript fixture file namesWinnie Hellmann2019-03-2143-36/+37
| | | | | | | 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"
* Merge branch 'winh-dequarantine-labels-autocomplete' into 'master'Kushal Pandya2019-03-201-0/+40
|\ | | | | | | | | | | | | Move gfm_autocomplete_spec.rb out of quarantine Closes #57995 and #56843 See merge request gitlab-org/gitlab-ce!25958
| * Merge branch 'winh-dequarantine-labels-autocomplete' into 'master'Phil Hughes2019-03-111-0/+40
| | | | | | | | | | | | | | | | | | | | 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)
* | Do not delete files in spec/javascripts/fixtures/static/Winnie Hellmann2019-03-191-4/+0
| |
* | Remove static HAML fixtures from frontend testing guideWinnie Hellmann2019-03-191-0/+3
| |
* | Remove static JavaScript HAML fixturesWinnie Hellmann2019-03-1942-200/+367
| | | | | | | | Replace all HAML fixtures with the generated HTML files.
* | Simplify the JavaScriptFixturesHelpers moduleRémy Coutable2019-03-192-34/+6
| | | | | | | | | | | | | | | | | | | | | | - 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>
* | Don't create EE-specific files when creating Emojis fixture filesRémy Coutable2019-03-121-0/+2
|/ | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Fix for mismatch in EE on FIXTURE_PATHS to FIXTURE_PATHRémy Coutable2019-03-071-4/+6
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Merge branch 'ce-extract-ee-specific-code-for-spec/support' into 'master'Dmitriy Zaporozhets2019-03-071-11/+11
|\ | | | | | | | | [CE] Extract EE specific code for spec/support See merge request gitlab-org/gitlab-ce!25569
| * Reduce differences in spec/support/helpers/javascript_fixtures_helpers.rbRémy Coutable2019-03-071-11/+11
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Moved all emojis to the public folderTim Zallmann2019-03-071-0/+16
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Revert "Merge branch 'winh-dequarantine-labels-autocomplete' into 'master'"Winnie Hellmann2019-03-051-40/+0
| | | | This reverts merge request !25542
* Add JSON fixture for labels autocomplete sourceWinnie Hellmann2019-02-271-0/+40
|
* Make fixtures/u2f.rb deterministicWinnie Hellmann2019-02-211-1/+2
|
* Make fixtures/snippet.rb deterministicWinnie Hellmann2019-02-211-1/+3
|
* Make fixtures/projects.rb deterministicWinnie Hellmann2019-02-211-4/+8
|
* Make fixtures/merge_requests.rb deterministicWinnie Hellmann2019-02-211-2/+5
|
* Make fixtures/issues.rb deterministicWinnie Hellmann2019-02-211-1/+1
|
* Make fixtures/groups.rb deterministicWinnie Hellmann2019-02-211-1/+1
|
* Make fixtures/deploy_keys.rb deterministicWinnie Hellmann2019-02-211-1/+1
|
* Make fixtures/commit.rb deterministicWinnie Hellmann2019-02-211-0/+1
|
* Make fixtures/blob.rb deterministicWinnie Hellmann2019-02-211-0/+1
|
* Addressing feedback from most recent reviews.Scott Escue2019-01-102-21/+26
|
* Updating OAuthRememberMe to use new common utility functions when ↵Scott Escue2019-01-101-0/+1
| | | | manipulating query parameters on OAuth buttons. This ensures the 'remember_me' parameter is safely added and removed when other query parameters are present.
* Addressing peer review feedback.Scott Escue2019-01-101-0/+21
| | | | Replacing inline JS with ES 2015 functions included in pages/sessions/new. Also applying suggested server-side syntax improvements to OmniAuthCallbacksController.
* Add config_options|variables to BuildMetadatakamil-refactor-ci-builds-v5Kamil Trzciński2019-01-041-2/+1
| | | | | | | | | | | 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).
* convert specs in javascripts/ and support/ to new syntaxJasper Maes2018-12-2120-56/+70
|
* Add Vue mixin for delayed job timersWinnie Hellmann2018-11-071-2/+21
|
* Prioritize group settings, improve panel titles, disable submit without changesLuke Bennett2018-10-151-0/+10
|
* Resolve "Commit details are not displayed when reviewing an MR commit by commit"Paul Slaughter2018-09-261-2/+12
|