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-05-19Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot
2021-04-21Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot
2020-12-17Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-02-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-30Replace rails_helper.rb with spec_helper.rbAsh McKenzie
rails_helper.rb's only logic was to require spec_helper.rb.
2019-08-01Fix labels issuable link specsSean McGivern
2019-08-01Rename broken spec filesSean McGivern
RSpec only executes files ending in _spec.rb.
2019-07-26Add frozen_string_literal to spec/featuresThong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-06-12Upgrade to Capybara 3Heinrich Lee Yu
Fix whitespace in specs because normalize_ws is slightly different from Capybara 2 behavior
2019-05-28Fix display of promote to group labelJan Provaznik
Since label presenter is used in label index view, label class check doesn't work as expected because the class is now LabelPresenter. Also `label.subject` doesn't work as expected now because Label's model `subject` method is shadowed by Gitlab's presenter's method which uses `subject` for referencing the original object. Instead we use a presenter's method for both checks now. `label_deletion_confirm_text` is not used anywhere so it's removed
2019-04-19Show prioritized labels to guestsHeinrich Lee Yu
Disables sorting when guests are viewing
2019-01-22fix(labels): Move the primary button out of breadcrumbs and into the project ↵Martin Hobert
section
2018-12-13Fix warning already initialized constant LABEL_TITLESSemyon Pupkov
spec/features/projects/labels/user_views_labels_spec.rb:7: warning: already initialized constant LABEL_TITLES spec/features/issues/user_creates_issue_spec.rb:67: warning: previous definition of LABEL_TITLES was here
2018-12-07Show primary button when all labels are prioritizedGeorge Tsiolis
2018-12-06Sort issues and merge requests in ascending and descending orderFatih Acet
2018-12-03Fix secondary nav dropdown menu styling in tablet and mobile screensKushal Pandya
2018-11-28Include new and edit links in breadcrumb for project milestones, group ↵George Tsiolis
milestones, and labels
2018-09-10Add sort dropdown to project labels page and group labels pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-07-31Add frozen_string_literal to search_labels_spec.rb according to GitLab botDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-07-31Show different not fount message for project labels searchDmitriy Zaporozhets
Depends on if prioritised or other labels are found or no labels at all are found, we show a corresponding message now Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-07-31Add more specs to labels search featureDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-07-31Add feature specs for project labels searchDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-07-11Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao
2018-07-05Enable Capybara/FeatureMethods copWinnie Hellmann
2018-05-29fix lintLuke Bennett
2018-05-29Fix user_removes_labels_specLuke Bennett
2018-05-29Fix update_prioritization_specLuke Bennett
2018-05-29Further fixes for project subscription_specLuke Bennett
2018-05-29Fix project subscription_specLuke Bennett
2018-05-29Remove screenshotsLuke Bennett
2018-05-25BE reviewLuke Bennett
2018-04-03Replace the `project/issues/labels.feature` spinach test with an rspec analogblackst0ne
2018-01-30Fix labels specsAnnabel Dunstone Gray
2017-12-22Replace '.team << [user, role]' with 'add_role(user)' in specsblackst0ne
2017-12-11Hide issues and MRs in labels list if disabledSophie Herold
Signed-off-by: Rémy Coutable <remy@rymai.me>
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-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-07-27Use `empty_project` where possible in spec/features/projectsRobert Speicher
2017-07-27Remove superfluous type defs in specsKeifer Furzland
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-27Remove help message about prioritized labels for non-membersTakuya Noguchi
2017-07-06Auto-correct ProjectPathHelper violationsRobert Speicher
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-05-23Use wait_for_requests to wait all JS requestOswaldo Ferreira
2017-04-21Unnecessary "include WaitForAjax" and "include ApiHelpers"Jacopo
Removed all the unnecessary include of `WaitForAjax` and `ApiHelpers` in the specs. Removed unnecessary usage of `api:true`
2017-03-15Allow sorting by due date and label prioritySean McGivern