summaryrefslogtreecommitdiff
path: root/spec/features/explore/groups_list_spec.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot2020-06-181-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-201-4/+4
|
* Add frozen_string_literal to spec/featuresThong Kuah2019-07-261-0/+2
| | | | | Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
* Autocorrect with RSpec/ExampleWording copThong Kuah2019-04-051-3/+3
| | | | | | | - rewords examples starting with 'should' - rewords examples starting with 'it' Note: I had to manually fixup "onlies" to "only"
* Use Projects::UpdateService to archive projectsJames Ramsay2018-08-031-2/+2
| | | | | | System hooks were not being triggered when projects were archived or unarchived. Reuse the Projects::UpdateService to automatically trigger system hooks and increase code reuse.
* Fix flakey time-senstive group filter specsfix-flakey-groups-filter-list-specsEric Eastwood2018-06-141-0/+4
| | | | | | | | This passed previously because the filtered group search is debounced by 0.5s. The test cleared the input, entered `group1`, cleared the input, entered nothing, and the all of groups are still listed because of the 0.5s debounce hasn't triggered and the test passes before anything is actually filtered. Even if we assert that the list is filtered before clearing the input, the test still fails because the nature of the `fill_in 'filter', with: ""` method is that ["if you're setting the value to "", no keys are ever actually sent, hence no [`input`] event"](https://github.com/teamcapybara/capybara/issues/203#issuecomment-557281) and we never filter back to everything in the list. So the solution is two-fold, add in the assertions that the list is actually filtered after each step. Then use a method that fills the input with proper events fired.
* Update feature specs for updated group listsBob Van Landuyt2017-10-051-2/+0
|
* Groups tree enhancements for Groups Dashboard and Group HomepageKushal Pandya2017-10-041-6/+7
|
* Reuse the groups tree for explore and dashboard.Bob Van Landuyt2017-10-041-0/+2
|
* Change all `:empty_project` to `:project`rs-empty_project-defaultRobert Speicher2017-08-021-1/+1
|
* Remove superfluous type defs in specsKeifer Furzland2017-07-271-1/+1
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Change gitlab_sign_in to sign_in where possibleRobert Speicher2017-06-291-1/+1
|
* Change `login_as` uses to `gitlab_sign_in`Robert Speicher2017-06-191-1/+1
|
* Use wait_for_requests to wait all JS requestwait-for-ajax-handling-all-js-requestsOswaldo Ferreira2017-05-221-3/+3
|
* Better Explore Groups viewLuke "Jared" Bennett2017-05-021-4/+24
|
* Unnecessary "include WaitForAjax" and "include ApiHelpers"Jacopo2017-04-211-2/+0
| | | | | Removed all the unnecessary include of `WaitForAjax` and `ApiHelpers` in the specs. Removed unnecessary usage of `api:true`
* Adding non_archived scope for counting projectsNaveen Kumar2017-03-241-0/+20
|
* Improve groups list specsdz-dashboard-groups-searchDmitriy Zaporozhets2017-03-021-1/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Update JS to use new standardsFilipa Lacerda2017-03-021-0/+13
|
* Add filter and sorting to dashboard groups pageDmitriy Zaporozhets2017-03-011-0/+33
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>