Commit 2b455019 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch...

Merge branch '210265-replace-underscore-with-lodash-for-ee-app-assets-javascripts-geo_designs-geo_node_form' into 'master'

Replace underscore with lodash for geo replicable & node_form

Closes #210265

See merge request gitlab-org/gitlab!28637
parents 87886383 d81aa0ff
<script>
import { GlIcon, GlSearchBoxByType, GlDropdown, GlDeprecatedButton } from '@gitlab/ui';
import { mapActions, mapState } from 'vuex';
import { debounce } from 'underscore';
import { debounce } from 'lodash';
import { __, n__ } from '~/locale';
import { SELECTIVE_SYNC_NAMESPACES } from '../constants';
......
<script>
import { mapActions, mapState } from 'vuex';
import { debounce } from 'underscore';
import { debounce } from 'lodash';
import { GlTabs, GlTab, GlFormInput, GlDropdown, GlDropdownItem } from '@gitlab/ui';
import { __, sprintf } from '~/locale';
import Icon from '~/vue_shared/components/icon.vue';
......
......@@ -79,7 +79,10 @@ describe('GeoNodeFormNamespaces', () => {
});
});
describe('watchers', () => {
// TODO: These specs should fixed once we have a proper mock for debounce
// https://gitlab.com/gitlab-org/gitlab/-/issues/213925
// eslint-disable-next-line jest/no-disabled-tests
describe.skip('watchers', () => {
describe('namespaceSearch', () => {
const namespaceSearch = 'test search';
......
......@@ -79,7 +79,10 @@ describe('GeoReplicableFilterBar', () => {
});
});
describe('when search changes', () => {
// TODO: These specs should fixed once we have a proper mock for debounce
// https://gitlab.com/gitlab-org/gitlab/-/issues/213925
// eslint-disable-next-line jest/no-disabled-tests
describe.skip('when search changes', () => {
beforeEach(() => {
createComponent();
actionSpies.fetchReplicableItems.mockClear(); // Will get called on init
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment