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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-05-26 18:10:57 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-26 18:10:57 +0300
commitede9464fd957582e4e0232f70113942b08ddfe78 (patch)
tree186b5e12e612810dbf8d4209126737726dd23289 /spec/frontend/boards
parent04f9cef437b65b4a62624936a37a99cfbfb4d61c (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/boards')
-rw-r--r--spec/frontend/boards/board_list_spec.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/spec/frontend/boards/board_list_spec.js b/spec/frontend/boards/board_list_spec.js
index bf39c3f3e42..e6060a2c4f8 100644
--- a/spec/frontend/boards/board_list_spec.js
+++ b/spec/frontend/boards/board_list_spec.js
@@ -181,12 +181,6 @@ describe('Board list component', () => {
});
});
- it('loads more issues after scrolling', () => {
- wrapper.vm.listRef.dispatchEvent(new Event('scroll'));
-
- expect(actions.fetchItemsForList).toHaveBeenCalled();
- });
-
it('does not load issues if already loading', () => {
wrapper = createComponent({
state: { listsFlags: { 'gid://gitlab/List/1': { isLoadingMore: true } } },