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
2018-07-11Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao
2018-07-05Enable Capybara/FeatureMethods copWinnie Hellmann
2018-06-21Changes tab VUE refactoringFelipe Artur
2018-05-10Replace `features/project/merge_requests/references.featue`blackst0ne
2018-05-10Replace the `project/issues/references.feature` spinach test with an rspec ↵blackst0ne
analog
2018-04-02Resolve "Clicking confidential and lock icons on sidebar should also ↵Dennis Tang
activate dropdown"
2017-12-01issue note storeSimon Knox
2017-11-21Fix reply quote keyboard shortcut on MRsEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/40295
2017-10-07Replaces `tag: true` into `:tag` in the specsJacopo
Replaces all the explicit include metadata syntax in the specs (tag: true) into the implicit one (:tag). Added a cop to prevent future errors and handle autocorrection.
2017-09-27fix code styleJarka Kadlecova
2017-09-26add feature specs for discussion lockJarka Kadlecova
2017-09-23Improve list of sorting optionsVitaliy @blackst0ne Klachkov
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-08-01Ensure all project factories use `:repository` trait or `:empty_project`Robert Speicher
2017-07-27Use `empty_project` where possible in spec/features/issuablesRobert Speicher
(It wasn't possible.)
2017-07-27Remove superfluous lib: true, type: redis, service: true, models: true, ↵Rémy Coutable
services: true, no_db: true, api: true Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-27Remove superfluous type defs in specsKeifer Furzland
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-24Support both internal and external issue trackersJarka Kadlecova
2017-07-07Merge branch 'master' into rs-sign_inRobert Speicher
2017-07-07Fix close_reopen_report_toggle_spec.rb path helpers rubocop offenseLuke "Jared" Bennett
2017-07-07Added issuables_helper.js, tidied up droplab-dropdown JS, fixed filtered ↵Luke "Jared" Bennett
search specs
2017-07-07Added specsLuke "Jared" Bennett
2017-07-06Merge branch 'master' into rs-sign_inRobert Speicher
2017-07-06Auto-correct ProjectPathHelper violationsRobert Speicher
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-29Refactored tests and added a breakpoint to the merge_request_tabsJose Ivan Vargas
2017-06-29Change gitlab_sign_in to sign_in where possibleRobert Speicher
2017-06-20Change `login_as` uses to `gitlab_sign_in`Robert Speicher
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-05-08Fix SpecsFelipe Artur
2017-04-12Add issues/:iid/closed_by api endpointmhasbini
2017-04-03Fix brittle specsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-04-03Don't use FFaker in factories, use sequences insteadRémy Coutable
FFaker can generate data that randomly break our test suite. This simplifies our factories and use sequences which are more predictive. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-08Updated specsPhil Hughes
2017-02-23Fix code for copsDouwe Maan
2017-02-23Enable Style/ConditionalAssignmentDouwe Maan
2017-02-22Refactored specsblackst0ne
2017-02-22Refactored specsblackst0ne
2017-02-21Improved specsblackst0ne
2017-02-18Fixed rubocop offensesblackst0ne
2017-02-18Added specsblackst0ne
2017-02-09Gather issuable metadata to avoid n+ queries on index viewFelipe Artur
2016-12-30Fix failures in default sort order specAdam Niedzielski
Test cases were not waiting for page load after clicking. This caused failures in test cases that were executed right after these incorrect ones, because of requests hitting server after a test was finished. We do not have to click links, we can go directly to a correct page by passing parameters in the URL.
2016-08-19Handle legacy sort order valuesSean McGivern
The sort orders used to be id_asc / id_desc, and are now created_asc / created_desc. Users can still have cookies containing the old sort orders, or bookmarks to links specifying them, so convert these to the new versions quietly.
2016-08-13Updated testsPhil Hughes
2016-08-01State specific default sort order for issuableszs
Provide more sensible default sort order for issues and merge requests based on the following table: | type | state | default sort order | |----------------|--------|--------------------| | issues | open | last created | | issues | closed | last updated | | issues | all | last created | | merge requests | open | last created | | merge requests | merged | last updated | | merge requests | closed | last updated | | merge requests | all | last created |