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
2021-11-18Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42GitLab Bot
2021-10-20Add latest changes from gitlab-org/gitlab@14-4-stable-eev14.4.0-rc42GitLab Bot
2021-07-20Add latest changes from gitlab-org/gitlab@14-1-stable-eev14.1.0-rc42GitLab Bot
2021-06-16Add latest changes from gitlab-org/gitlab@14-0-stable-eev14.0.0-rc42GitLab Bot
2021-05-19Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot
2021-03-16Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40GitLab Bot
2021-01-20Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42Robert Speicher
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2020-03-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-22Enable CSP in gitlab.yml.exampleHeinrich Lee Yu
This enables CSP in dev and CI
2019-07-25Add frozen_string_literal to spec/supportThong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-07-22Add Aria support to capybaraNick Thomas
2019-06-12Upgrade to Capybara 3Heinrich Lee Yu
Fix whitespace in specs because normalize_ws is slightly different from Capybara 2 behavior
2019-06-11Explicitly set Chrome user-data-dirHeinrich Lee Yu
This is a temporary measure to prevent some system specs causing Chrome to crash
2019-05-06Try to reduce testing view port and unify itLin Jen-Shin
Hoping that we don't hit into Selenium::WebDriver::Error::NoSuchDriverError: invalid session id Again.
2018-11-01Fix typos in comments and specsGeorge Tsiolis
2018-04-23Move spec helpers/matchers/shared examples/contexts to their relevant folderRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-04-13prefer &. to .tryMike Greiling
2018-04-13remove --disable-gpu flag as it is no longer neededMike Greiling
2018-04-13display relevant browser console output whenever an integration test failsMike Greiling
2018-02-24prevent localStorage.clear from running when it would cause an errorMike Greiling
2017-12-22Disable /dev/shm in CIStan Hu
According to the Chrome source code (https://chromium.googlesource.com/chromium/src/base/+/master/base_switches.cc#120): The /dev/shm partition is too small in certain VM environments, causing Chrome to fail or crash (see http://crbug.com/715363). Use this flag to work-around this issue (a temporary directory will always be used to create anonymous shared memory files). Addresses gitlab-org/gitlab-ee#4252 but doesn't appear to cure it completely.
2017-11-29add logging back to capybara config and clean up selenium option instantiationMike Greiling
2017-11-01make window resizing more resiliant on small screens when headless mode is offMike Greiling
2017-11-01move resize option the pre-test hooks instead of post-testMike Greiling
2017-11-01reset browser window size between testsMike Greiling
2017-10-21add CHROME_HEADLESS environment variable to disable headless modeMike Greiling
2017-10-20clear localStorage after each capybara test (global)Mike Greiling
2017-08-13Bump selenium-webdriver to 3.5.0 to make Capybara work properlyStan Hu
2017-08-12Expand Chrome window size to make specs passStan Hu
2017-08-03Merge branch 'master' into sh-headless-chrome-supportStan Hu
2017-07-28Ensure Gitlab::Application.routes.default_url_options are set correctly in ↵Rémy Coutable
Capybara + :js specs Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-22Don't reset the session when the example failed, because we need ↵Douwe Maan
capybara-screenshot to have access to it
2017-06-17Make Capybara::Screenshot work with headless ChromeStan Hu
2017-06-17Replace PhantomJS with headless Chrome for Rspec testsStan Hu
Closes #30876
2017-06-16Call Capybara.reset_sessions! before block_and_wait_for_requests_completeRémy Coutable
capybara/rspec already calls Capybara.reset_sessions! in an `after` hook, but `block_and_wait_for_requests_complete` is called before it so by calling it explicitely here, we prevent any new requests from being fired. See https://github.com/teamcapybara/capybara/blob/ffb41cfad620de1961bb49b1562a9fa9b28c0903/lib/capybara/rspec.rb#L20-L25 Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-12Let PhantomJS load local imagesRémy Coutable
This change fix a memory leak due to a Webkit bug: https://github.com/ariya/phantomjs/issues/12903 Also: - Whitelist only localhost and 127.0.0.1 in Capybara + JS specs - Blacklist all requests to media such as images, videos, PDFs, CSVs etc. - Log all the requests made. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-31Properly eagerly-load the Capybara server for JS feature specs onlyRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-31Eager-load the Capybara server to prevent timeoutsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-31Increase Capybara's timeoutRémy Coutable
Also disabled assets warming for Capybara/RSpec and remove a check to skip assets warming when ./tmp/cache/assets/test exists because assets are now served by webpack-dev-server. Signed-off-by: Rémy Coutable <remy@rymai.me>