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-05-17Link to testing guide for feature flag spec infoLuke Duncalfe
In order for there to be a single source of truth.
2019-04-05Add doc when rspec-set won't workHeinrich Lee Yu
2019-03-26Update testing guide to reference test designZeff Morgan
2019-03-05Docs: Fix broken anchors in development docsMarcel Amirault
2019-02-28Merge branch 'patch-31' into 'master'Douwe Maan
Update best_practices.md let section to also reference let! variables. See merge request gitlab-org/gitlab-ce!22496
2019-02-20Fix and document an RSpec::Parameterized::TableSyntax edge-caseRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-24Fix most instances of bare URLs in markdownEvan Read
2018-12-12Update best_practices.mdSam Bigelow
2018-12-12Document how to run rspec testsSam Bigelow
2018-11-22Eliminate duplicated wordsTakuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2018-10-22Merge branch '51366-custom-repos-trait-docs' into 'master'Rémy Coutable
Document the :repository and :custom_repo traits Closes #51366 See merge request gitlab-org/gitlab-ce!22480
2018-10-19Document how GitLab keeps its tests pristineNick Thomas
2018-10-19Update best_practices.md let section to also reference let! variables.Artur Martsinkovskyi
2018-10-19Document the :repository and :custom_repo traitsNick Thomas
2018-07-20First version of pry_debugging.mdToon Claes
2018-05-31Add link to hack for styling Capybara HTML dumpsWinnie Hellmann
2018-05-15Merge branch 'backstage/gb/improve-fast-specs-helper' into 'master'Rémy Coutable
Improve fast specs helper to autoload the library See merge request gitlab-org/gitlab-ce!18903
2018-05-15Improve testing best practices guidelinesGrzegorz Bizon
It mentions that explicitly defining dependencies in sources is preferred over defining such dependencies only in spec files.
2018-05-15Update docs describing `fast_spec_helper` best practicesGrzegorz Bizon
2018-05-14Clean up docsblackst0ne
2018-05-10Support resetting of Prometheus metrics between test runsStan Hu
Adding the :prometheus tag to an rspec test will clear out memory-mapped files and reset the registry. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/39968
2018-04-23Add Capybara debugging methods to docsMichael Kozono
2018-04-23Address latest feedbackRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-04-23Document the new 'spec/fast_spec_helper.rb' fileRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-01-22Add note about live_debug only working on javascript enabled specsClement Ho
2018-01-19Update best_practices.mdAnwar El Wakil
Remove duplicate list item in "General Guidelines" Section.
2017-12-14Replace factory_girl_rails with factory_bot_railsRémy Coutable
I've followed the [upgrade guide](https://github.com/thoughtbot/factory_bot/blob/4-9-0-stable/UPGRADE_FROM_FACTORY_GIRL.md) and ran these two commands: ``` grep -e FactoryGirl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|FactoryGirl|FactoryBot|" grep -e factory_girl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|factory_girl|factory_bot|" ``` Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-11-02Merge branch 'patch-28' into 'master'Douwe Maan
Add debugging section to testing_guide/best_practices.md. See merge request gitlab-org/gitlab-ce!14858
2017-11-02Address Douwe's feedbackRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-26Simplify the live debugger resume mechanism: press any keyRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-19Check for element before evaluate_scriptEric Eastwood
Tip from https://robots.thoughtbot.com/write-reliable-asynchronous-integration-tests-with-capybara#directly-interacting-with-javascript
2017-10-17Improve the LiveDebugger exit handler and documentationRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-16Add LiveDebugger#live_debug to debug Capybara in feature tests.Rémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-13Update best_practices.mdClement Ho
2017-10-13Add debugging section to testing_guide/best_practices.md.Fatih Acet
2017-10-11Refactor the Development documentation, and divide the Testing documentation ↵Rémy Coutable
into multiple pages