diff options
Diffstat (limited to 'spec/frontend/pages/dashboard')
-rw-r--r-- | spec/frontend/pages/dashboard/projects/index/components/customize_homepage_banner_spec.js | 4 | ||||
-rw-r--r-- | spec/frontend/pages/dashboard/todos/index/todos_spec.js | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/spec/frontend/pages/dashboard/projects/index/components/customize_homepage_banner_spec.js b/spec/frontend/pages/dashboard/projects/index/components/customize_homepage_banner_spec.js index fbe2274c40d..63c1260560b 100644 --- a/spec/frontend/pages/dashboard/projects/index/components/customize_homepage_banner_spec.js +++ b/spec/frontend/pages/dashboard/projects/index/components/customize_homepage_banner_spec.js @@ -1,9 +1,9 @@ -import { shallowMount } from '@vue/test-utils'; import { GlBanner } from '@gitlab/ui'; +import { shallowMount } from '@vue/test-utils'; import MockAdapter from 'axios-mock-adapter'; import { mockTracking, unmockTracking, triggerEvent } from 'helpers/tracking_helper'; -import CustomizeHomepageBanner from '~/pages/dashboard/projects/index/components/customize_homepage_banner.vue'; import axios from '~/lib/utils/axios_utils'; +import CustomizeHomepageBanner from '~/pages/dashboard/projects/index/components/customize_homepage_banner.vue'; const svgPath = '/illustrations/background'; const provide = { diff --git a/spec/frontend/pages/dashboard/todos/index/todos_spec.js b/spec/frontend/pages/dashboard/todos/index/todos_spec.js index 5018b0c4f73..fb612f17669 100644 --- a/spec/frontend/pages/dashboard/todos/index/todos_spec.js +++ b/spec/frontend/pages/dashboard/todos/index/todos_spec.js @@ -1,10 +1,10 @@ -import $ from 'jquery'; import MockAdapter from 'axios-mock-adapter'; -import Todos from '~/pages/dashboard/todos/index/todos'; +import $ from 'jquery'; import '~/lib/utils/common_utils'; import axios from '~/lib/utils/axios_utils'; import { addDelimiter } from '~/lib/utils/text_utility'; import { visitUrl } from '~/lib/utils/url_utility'; +import Todos from '~/pages/dashboard/todos/index/todos'; jest.mock('~/lib/utils/url_utility', () => ({ visitUrl: jest.fn().mockName('visitUrl'), |