Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
165a756a
Commit
165a756a
authored
Dec 08, 2021
by
winniehell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use global Vue instance in Jest (analytics)
parent
6c464495
Changes
25
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
58 additions
and
96 deletions
+58
-96
ee/spec/frontend/analytics/code_review_analytics/components/app_spec.js
...nd/analytics/code_review_analytics/components/app_spec.js
+3
-4
ee/spec/frontend/analytics/code_review_analytics/components/filter_bar_spec.js
...ytics/code_review_analytics/components/filter_bar_spec.js
+3
-4
ee/spec/frontend/analytics/code_review_analytics/components/merge_request_table_spec.js
...e_review_analytics/components/merge_request_table_spec.js
+3
-4
ee/spec/frontend/analytics/cycle_analytics/components/base_spec.js
...rontend/analytics/cycle_analytics/components/base_spec.js
+3
-4
ee/spec/frontend/analytics/cycle_analytics/components/duration_chart_spec.js
...alytics/cycle_analytics/components/duration_chart_spec.js
+3
-4
ee/spec/frontend/analytics/cycle_analytics/components/tasks_by_type/tasks_by_type_filters_spec.js
...cs/components/tasks_by_type/tasks_by_type_filters_spec.js
+3
-4
ee/spec/frontend/analytics/cycle_analytics/components/value_stream_form_spec.js
...tics/cycle_analytics/components/value_stream_form_spec.js
+3
-4
ee/spec/frontend/analytics/cycle_analytics/components/value_stream_select_spec.js
...cs/cycle_analytics/components/value_stream_select_spec.js
+3
-4
ee/spec/frontend/analytics/devops_reports/devops_adoption/components/devops_adoption_add_dropdown_spec.js
..._adoption/components/devops_adoption_add_dropdown_spec.js
+0
-3
ee/spec/frontend/analytics/devops_reports/devops_adoption/components/devops_adoption_app_spec.js
...ts/devops_adoption/components/devops_adoption_app_spec.js
+0
-3
ee/spec/frontend/analytics/devops_reports/devops_adoption/components/devops_adoption_delete_modal_spec.js
..._adoption/components/devops_adoption_delete_modal_spec.js
+1
-3
ee/spec/frontend/analytics/devops_reports/devops_adoption/components/devops_adoption_overciew_chart_spec.js
...doption/components/devops_adoption_overciew_chart_spec.js
+3
-4
ee/spec/frontend/analytics/group_ci_cd_analytics/components/release_stats_card_spec.js
...oup_ci_cd_analytics/components/release_stats_card_spec.js
+1
-3
ee/spec/frontend/analytics/merge_request_analytics/components/filter_bar_spec.js
...ics/merge_request_analytics/components/filter_bar_spec.js
+3
-4
ee/spec/frontend/analytics/merge_request_analytics/components/throughput_chart_spec.js
...rge_request_analytics/components/throughput_chart_spec.js
+3
-4
ee/spec/frontend/analytics/merge_request_analytics/components/throughput_table_spec.js
...rge_request_analytics/components/throughput_table_spec.js
+3
-4
ee/spec/frontend/analytics/productivity_analytics/components/app_spec.js
...d/analytics/productivity_analytics/components/app_spec.js
+3
-4
ee/spec/frontend/analytics/productivity_analytics/components/filter_dropdowns_spec.js
...roductivity_analytics/components/filter_dropdowns_spec.js
+3
-4
ee/spec/frontend/analytics/repository_analytics/components/download_test_coverage_spec.js
...itory_analytics/components/download_test_coverage_spec.js
+1
-4
ee/spec/frontend/analytics/repository_analytics/components/group_repository_analytics_spec.js
...y_analytics/components/group_repository_analytics_spec.js
+2
-3
ee/spec/frontend/analytics/repository_analytics/components/select_projects_dropdown_spec.js
...ory_analytics/components/select_projects_dropdown_spec.js
+1
-4
ee/spec/frontend/analytics/repository_analytics/components/test_coverage_summary_spec.js
...sitory_analytics/components/test_coverage_summary_spec.js
+1
-4
ee/spec/frontend/analytics/repository_analytics/components/test_coverage_table_spec.js
...pository_analytics/components/test_coverage_table_spec.js
+3
-5
spec/frontend/analytics/usage_trends/components/usage_trends_count_chart_spec.js
.../usage_trends/components/usage_trends_count_chart_spec.js
+3
-4
spec/frontend/analytics/usage_trends/components/users_chart_spec.js
...end/analytics/usage_trends/components/users_chart_spec.js
+3
-4
No files found.
ee/spec/frontend/analytics/code_review_analytics/components/app_spec.js
View file @
165a756a
import
{
GlLoadingIcon
,
GlEmptyState
,
GlBadge
,
GlPagination
}
from
'
@gitlab/ui
'
;
import
{
createLocalVue
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
CodeReviewAnalyticsApp
from
'
ee/analytics/code_review_analytics/components/app.vue
'
;
import
FilterBar
from
'
ee/analytics/code_review_analytics/components/filter_bar.vue
'
;
...
...
@@ -9,8 +10,7 @@ import createMergeRequestsState from 'ee/analytics/code_review_analytics/store/m
import
{
TEST_HOST
}
from
'
helpers/test_constants
'
;
import
createFiltersState
from
'
~/vue_shared/components/filtered_search_bar/store/modules/filters/state
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
describe
(
'
CodeReviewAnalyticsApp component
'
,
()
=>
{
let
wrapper
;
...
...
@@ -57,7 +57,6 @@ describe('CodeReviewAnalyticsApp component', () => {
const
createComponent
=
(
store
)
=>
shallowMount
(
CodeReviewAnalyticsApp
,
{
localVue
,
store
,
propsData
:
{
projectId
:
1
,
...
...
ee/spec/frontend/analytics/code_review_analytics/components/filter_bar_spec.js
View file @
165a756a
import
{
createLocalVue
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
axios
from
'
axios
'
;
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
FilterBar
from
'
ee/analytics/code_review_analytics/components/filter_bar.vue
'
;
import
storeConfig
from
'
ee/analytics/code_review_analytics/store
'
;
...
...
@@ -19,8 +20,7 @@ import * as utils from '~/vue_shared/components/filtered_search_bar/filtered_sea
import
initialFiltersState
from
'
~/vue_shared/components/filtered_search_bar/store/modules/filters/state
'
;
import
UrlSync
from
'
~/vue_shared/components/url_sync.vue
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
const
milestoneTokenType
=
'
milestone
'
;
const
labelsTokenType
=
'
labels
'
;
...
...
@@ -81,7 +81,6 @@ describe('Filter bar', () => {
function
createComponent
(
initialStore
)
{
return
shallowMount
(
FilterBar
,
{
localVue
,
store
:
initialStore
,
propsData
:
{
projectPath
:
'
foo
'
,
...
...
ee/spec/frontend/analytics/code_review_analytics/components/merge_request_table_spec.js
View file @
165a756a
import
{
GlTable
}
from
'
@gitlab/ui
'
;
import
{
createLocalVue
,
mount
}
from
'
@vue/test-utils
'
;
import
{
mount
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
MergeRequestTable
from
'
ee/analytics/code_review_analytics/components/merge_request_table.vue
'
;
import
createState
from
'
ee/analytics/code_review_analytics/store/modules/merge_requests/state
'
;
import
{
mockMergeRequests
}
from
'
../mock_data
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
describe
(
'
MergeRequestTable component
'
,
()
=>
{
let
wrapper
;
...
...
@@ -27,7 +27,6 @@ describe('MergeRequestTable component', () => {
const
createComponent
=
(
store
)
=>
mount
(
MergeRequestTable
,
{
localVue
,
store
,
});
...
...
ee/spec/frontend/analytics/cycle_analytics/components/base_spec.js
View file @
165a756a
import
{
GlEmptyState
}
from
'
@gitlab/ui
'
;
import
{
createLocalVue
,
shallowMount
,
mount
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
,
mount
}
from
'
@vue/test-utils
'
;
import
axios
from
'
axios
'
;
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
Component
from
'
ee/analytics/cycle_analytics/components/base.vue
'
;
import
DurationChart
from
'
ee/analytics/cycle_analytics/components/duration_chart.vue
'
;
...
...
@@ -48,8 +49,7 @@ const noAccessSvgPath = 'path/to/no/access';
const
emptyStateSvgPath
=
'
path/to/empty/state
'
;
const
stage
=
null
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
jest
.
mock
(
'
~/flash
'
);
const
defaultStubs
=
{
...
...
@@ -132,7 +132,6 @@ describe('EE Value Stream Analytics component', () => {
const
func
=
shallow
?
shallowMount
:
mount
;
const
comp
=
func
(
Component
,
{
localVue
,
store
,
propsData
:
{
emptyStateSvgPath
,
...
...
ee/spec/frontend/analytics/cycle_analytics/components/duration_chart_spec.js
View file @
165a756a
import
{
GlDropdownItem
}
from
'
@gitlab/ui
'
;
import
{
shallowMount
,
mount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
,
mount
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
DurationChart
from
'
ee/analytics/cycle_analytics/components/duration_chart.vue
'
;
import
StageDropdownFilter
from
'
ee/analytics/cycle_analytics/components/stage_dropdown_filter.vue
'
;
...
...
@@ -7,8 +8,7 @@ import Scatterplot from 'ee/analytics/shared/components/scatterplot.vue';
import
ChartSkeletonLoader
from
'
~/vue_shared/components/resizable_chart/skeleton_loader.vue
'
;
import
{
allowedStages
as
stages
,
durationChartPlottableData
as
durationData
}
from
'
../mock_data
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
const
actionSpies
=
{
fetchDurationData
:
jest
.
fn
(),
...
...
@@ -41,7 +41,6 @@ function createComponent({
props
=
{},
}
=
{})
{
return
mountFn
(
DurationChart
,
{
localVue
,
store
:
fakeStore
({
initialState
,
initialGetters
}),
propsData
:
{
stages
,
...
...
ee/spec/frontend/analytics/cycle_analytics/components/tasks_by_type/tasks_by_type_filters_spec.js
View file @
165a756a
import
{
GlDropdownItem
,
GlSegmentedControl
,
GlSprintf
}
from
'
@gitlab/ui
'
;
import
{
shallowMount
,
mount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
,
mount
}
from
'
@vue/test-utils
'
;
import
axios
from
'
axios
'
;
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
LabelsSelector
from
'
ee/analytics/cycle_analytics/components/labels_selector.vue
'
;
import
TasksByTypeFilters
from
'
ee/analytics/cycle_analytics/components/tasks_by_type/tasks_by_type_filters.vue
'
;
...
...
@@ -32,15 +33,13 @@ const selectLabelAtIndex = (ctx, index) => {
const
mockGroupLabelsRequest
=
()
=>
new
MockAdapter
(
axios
).
onGet
().
reply
(
200
,
groupLabels
);
let
store
=
null
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
jest
.
mock
(
'
~/flash
'
);
function
createComponent
({
props
=
{},
mountFn
=
shallowMount
}
=
{})
{
store
=
createStore
();
return
mountFn
(
TasksByTypeFilters
,
{
localVue
,
store
:
{
...
store
,
getters
:
{
...
...
ee/spec/frontend/analytics/cycle_analytics/components/value_stream_form_spec.js
View file @
165a756a
import
{
GlModal
,
GlFormInput
}
from
'
@gitlab/ui
'
;
import
{
shallowMount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
{
PRESET_OPTIONS_BLANK
,
...
...
@@ -19,8 +20,7 @@ import { customStageEvents as formEvents, defaultStageConfig, rawCustomStage } f
const
scrollIntoViewMock
=
jest
.
fn
();
HTMLElement
.
prototype
.
scrollIntoView
=
scrollIntoViewMock
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
describe
(
'
ValueStreamForm
'
,
()
=>
{
let
wrapper
=
null
;
...
...
@@ -68,7 +68,6 @@ describe('ValueStreamForm', () => {
const
createComponent
=
({
props
=
{},
data
=
{},
stubs
=
{},
state
=
{}
}
=
{})
=>
extendedWrapper
(
shallowMount
(
ValueStreamForm
,
{
localVue
,
store
:
fakeStore
({
state
}),
data
()
{
return
{
...
...
ee/spec/frontend/analytics/cycle_analytics/components/value_stream_select_spec.js
View file @
165a756a
import
{
GlDropdown
}
from
'
@gitlab/ui
'
;
import
{
mount
,
shallowMount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
{
mount
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
ValueStreamSelect
from
'
ee/analytics/cycle_analytics/components/value_stream_select.vue
'
;
import
{
mockTracking
,
unmockTracking
}
from
'
helpers/tracking_helper
'
;
...
...
@@ -7,8 +8,7 @@ import { extendedWrapper } from 'helpers/vue_test_utils_helper';
import
{
findDropdownItemText
}
from
'
../helpers
'
;
import
{
valueStreams
,
defaultStageConfig
}
from
'
../mock_data
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
describe
(
'
ValueStreamSelect
'
,
()
=>
{
let
wrapper
=
null
;
...
...
@@ -41,7 +41,6 @@ describe('ValueStreamSelect', () => {
const
createComponent
=
({
data
=
{},
initialState
=
{},
mountFn
=
shallowMount
}
=
{})
=>
extendedWrapper
(
mountFn
(
ValueStreamSelect
,
{
localVue
,
store
:
fakeStore
({
initialState
}),
data
()
{
return
{
...
...
ee/spec/frontend/analytics/devops_reports/devops_adoption/components/devops_adoption_add_dropdown_spec.js
View file @
165a756a
import
{
GlDropdown
,
GlLoadingIcon
,
GlSearchBoxByType
}
from
'
@gitlab/ui
'
;
import
*
as
Sentry
from
'
@sentry/browser
'
;
import
{
createLocalVue
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
VueApollo
from
'
vue-apollo
'
;
import
DevopsAdoptionAddDropdown
from
'
ee/analytics/devops_reports/devops_adoption/components/devops_adoption_add_dropdown.vue
'
;
...
...
@@ -23,7 +22,6 @@ import {
genericDeleteErrorMessage
,
}
from
'
../mock_data
'
;
const
localVue
=
createLocalVue
();
Vue
.
use
(
VueApollo
);
const
mutateAdd
=
jest
.
fn
().
mockResolvedValue
({
...
...
@@ -59,7 +57,6 @@ describe('DevopsAdoptionAddDropdown', () => {
]);
wrapper
=
shallowMountExtended
(
DevopsAdoptionAddDropdown
,
{
localVue
,
apolloProvider
:
mockApollo
,
propsData
:
{
groups
:
[],
...
...
ee/spec/frontend/analytics/devops_reports/devops_adoption/components/devops_adoption_app_spec.js
View file @
165a756a
import
{
GlAlert
,
GlTabs
}
from
'
@gitlab/ui
'
;
import
*
as
Sentry
from
'
@sentry/browser
'
;
import
{
createLocalVue
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
VueApollo
from
'
vue-apollo
'
;
import
DevopsAdoptionAddDropdown
from
'
ee/analytics/devops_reports/devops_adoption/components/devops_adoption_add_dropdown.vue
'
;
...
...
@@ -29,7 +28,6 @@ jest.mock('ee/analytics/devops_reports/devops_adoption/utils/cache_updates', ()
addEnabledNamespacesToCache
:
jest
.
fn
(),
}));
const
localVue
=
createLocalVue
();
Vue
.
use
(
VueApollo
);
const
NETWORK_ERROR
=
new
Error
(
'
foo!
'
);
...
...
@@ -117,7 +115,6 @@ describe('DevopsAdoptionApp', () => {
const
{
mockApollo
,
data
=
{},
provide
=
{}
}
=
options
;
return
shallowMountExtended
(
DevopsAdoptionApp
,
{
localVue
,
apolloProvider
:
mockApollo
,
provide
,
data
()
{
...
...
ee/spec/frontend/analytics/devops_reports/devops_adoption/components/devops_adoption_delete_modal_spec.js
View file @
165a756a
import
{
GlModal
,
GlSprintf
,
GlAlert
}
from
'
@gitlab/ui
'
;
import
*
as
Sentry
from
'
@sentry/browser
'
;
import
{
createLocalVue
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
VueApollo
from
'
vue-apollo
'
;
import
DevopsAdoptionDeleteModal
from
'
ee/analytics/devops_reports/devops_adoption/components/devops_adoption_delete_modal.vue
'
;
...
...
@@ -13,7 +13,6 @@ import {
devopsAdoptionNamespaceData
,
}
from
'
../mock_data
'
;
const
localVue
=
createLocalVue
();
Vue
.
use
(
VueApollo
);
const
mockEvent
=
{
preventDefault
:
jest
.
fn
()
};
...
...
@@ -45,7 +44,6 @@ describe('DevopsAdoptionDeleteModal', () => {
]);
wrapper
=
shallowMount
(
DevopsAdoptionDeleteModal
,
{
localVue
,
apolloProvider
:
mockApollo
,
propsData
:
{
modalId
,
...
...
ee/spec/frontend/analytics/devops_reports/devops_adoption/components/devops_adoption_overciew_chart_spec.js
View file @
165a756a
import
{
createLocalVue
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
VueApollo
from
'
vue-apollo
'
;
import
{
GlStackedColumnChart
}
from
'
@gitlab/ui/dist/charts
'
;
import
ChartSkeletonLoader
from
'
~/vue_shared/components/resizable_chart/skeleton_loader.vue
'
;
...
...
@@ -7,8 +8,7 @@ import getSnapshotsQuery from 'ee/analytics/devops_reports/devops_adoption/graph
import
createMockApollo
from
'
helpers/mock_apollo_helper
'
;
import
{
namespaceWithSnapotsData
}
from
'
../mock_data
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
VueApollo
);
Vue
.
use
(
VueApollo
);
const
mockWithData
=
jest
.
fn
().
mockResolvedValue
(
namespaceWithSnapotsData
);
...
...
@@ -23,7 +23,6 @@ describe('DevopsAdoptionOverviewChart', () => {
const
handlers
=
[[
getSnapshotsQuery
,
mockSnapshotsQuery
]];
wrapper
=
shallowMount
(
DevopsAdoptionOverviewChart
,
{
localVue
,
provide
:
{
groupGid
:
namespaceWithSnapotsData
.
data
.
devopsAdoptionEnabledNamespaces
.
nodes
[
0
].
namespace
.
id
,
...
...
ee/spec/frontend/analytics/group_ci_cd_analytics/components/release_stats_card_spec.js
View file @
165a756a
import
{
GlSkeletonLoader
,
GlCard
}
from
'
@gitlab/ui
'
;
import
{
shallowMount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
merge
}
from
'
lodash
'
;
import
Vue
from
'
vue
'
;
import
VueApollo
from
'
vue-apollo
'
;
...
...
@@ -8,7 +8,6 @@ import groupReleaseStatsQuery from 'ee/analytics/group_ci_cd_analytics/graphql/g
import
createMockApollo
from
'
helpers/mock_apollo_helper
'
;
import
{
groupReleaseStatsQueryResponse
}
from
'
./mock_data
'
;
const
localVue
=
createLocalVue
();
Vue
.
use
(
VueApollo
);
describe
(
'
Release stats card
'
,
()
=>
{
...
...
@@ -16,7 +15,6 @@ describe('Release stats card', () => {
const
createComponent
=
({
apolloProvider
})
=>
{
wrapper
=
shallowMount
(
ReleaseStatsCard
,
{
localVue
,
apolloProvider
,
stubs
:
{
GlCard
,
...
...
ee/spec/frontend/analytics/merge_request_analytics/components/filter_bar_spec.js
View file @
165a756a
import
{
createLocalVue
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
axios
from
'
axios
'
;
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
FilterBar
from
'
ee/analytics/merge_request_analytics/components/filter_bar.vue
'
;
import
storeConfig
from
'
ee/analytics/merge_request_analytics/store
'
;
...
...
@@ -22,8 +23,7 @@ import * as utils from '~/vue_shared/components/filtered_search_bar/filtered_sea
import
initialFiltersState
from
'
~/vue_shared/components/filtered_search_bar/store/modules/filters/state
'
;
import
UrlSync
from
'
~/vue_shared/components/url_sync.vue
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
const
sourceBranchTokenType
=
'
source_branch
'
;
const
targetBranchTokenType
=
'
target_branch
'
;
...
...
@@ -103,7 +103,6 @@ describe('Filter bar', () => {
function
createComponent
(
initialStore
,
options
=
{})
{
const
{
type
=
ITEM_TYPE
.
PROJECT
}
=
options
;
return
shallowMount
(
FilterBar
,
{
localVue
,
store
:
initialStore
,
provide
:
()
=>
({
fullPath
:
'
foo
'
,
...
...
ee/spec/frontend/analytics/merge_request_analytics/components/throughput_chart_spec.js
View file @
165a756a
import
{
GlAlert
}
from
'
@gitlab/ui
'
;
import
{
GlAreaChart
}
from
'
@gitlab/ui/dist/charts
'
;
import
{
shallowMount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
ThroughputChart
from
'
ee/analytics/merge_request_analytics/components/throughput_chart.vue
'
;
import
ThroughputStats
from
'
ee/analytics/merge_request_analytics/components/throughput_stats.vue
'
;
...
...
@@ -15,8 +16,7 @@ import {
fullPath
,
}
from
'
../mock_data
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
const
defaultQueryVariables
=
{
assigneeUsername
:
null
,
...
...
@@ -45,7 +45,6 @@ describe('ThroughputChart', () => {
function
createComponent
(
options
=
{})
{
const
{
mocks
=
defaultMocks
}
=
options
;
return
shallowMount
(
ThroughputChart
,
{
localVue
,
store
,
mocks
,
provide
:
{
...
...
ee/spec/frontend/analytics/merge_request_analytics/components/throughput_table_spec.js
View file @
165a756a
...
...
@@ -6,7 +6,8 @@ import {
GlAvatarsInline
,
GlPagination
,
}
from
'
@gitlab/ui
'
;
import
{
mount
,
shallowMount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
{
mount
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
ThroughputTable
from
'
ee/analytics/merge_request_analytics/components/throughput_table.vue
'
;
import
{
...
...
@@ -23,8 +24,7 @@ import {
pageInfo
,
}
from
'
../mock_data
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
const
defaultQueryVariables
=
{
assigneeUsername
:
null
,
...
...
@@ -47,7 +47,6 @@ describe('ThroughputTable', () => {
function
createComponent
(
options
=
{})
{
const
{
mocks
=
defaultMocks
,
func
=
shallowMount
}
=
options
;
return
func
(
ThroughputTable
,
{
localVue
,
store
,
mocks
,
provide
:
{
...
...
ee/spec/frontend/analytics/productivity_analytics/components/app_spec.js
View file @
165a756a
...
...
@@ -7,9 +7,10 @@ import {
GlAlert
,
}
from
'
@gitlab/ui
'
;
import
{
GlColumnChart
}
from
'
@gitlab/ui/dist/charts
'
;
import
{
createLocalVue
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
axios
from
'
axios
'
;
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
ProductivityApp
from
'
ee/analytics/productivity_analytics/components/app.vue
'
;
import
MetricChart
from
'
ee/analytics/productivity_analytics/components/metric_chart.vue
'
;
...
...
@@ -23,8 +24,7 @@ import * as commonUtils from '~/lib/utils/common_utils';
import
httpStatusCodes
from
'
~/lib/utils/http_status
'
;
import
*
as
urlUtils
from
'
~/lib/utils/url_utility
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
describe
(
'
ProductivityApp component
'
,
()
=>
{
let
wrapper
;
...
...
@@ -75,7 +75,6 @@ describe('ProductivityApp component', () => {
},
});
wrapper
=
shallowMount
(
ProductivityApp
,
{
localVue
,
store
:
mockStore
,
mixins
:
[
UrlSyncMixin
],
propsData
:
{
...
...
ee/spec/frontend/analytics/productivity_analytics/components/filter_dropdowns_spec.js
View file @
165a756a
import
{
createLocalVue
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
FilterDropdowns
from
'
ee/analytics/productivity_analytics/components/filter_dropdowns.vue
'
;
import
{
getStoreConfig
}
from
'
ee/analytics/productivity_analytics/store
'
;
...
...
@@ -6,8 +7,7 @@ import GroupsDropdownFilter from 'ee/analytics/shared/components/groups_dropdown
import
ProjectsDropdownFilter
from
'
~/analytics/shared/components/projects_dropdown_filter.vue
'
;
import
resetStore
from
'
../helpers
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
describe
(
'
FilterDropdowns component
'
,
()
=>
{
let
wrapper
;
...
...
@@ -43,7 +43,6 @@ describe('FilterDropdowns component', () => {
});
wrapper
=
shallowMount
(
FilterDropdowns
,
{
localVue
,
store
:
mockStore
,
propsData
:
{},
});
...
...
ee/spec/frontend/analytics/repository_analytics/components/download_test_coverage_spec.js
View file @
165a756a
import
{
GlAlert
,
GlDropdown
,
GlDropdownItem
,
GlModal
}
from
'
@gitlab/ui
'
;
import
{
shallowMount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
DownloadTestCoverage
from
'
ee/analytics/repository_analytics/components/download_test_coverage.vue
'
;
import
SelectProjectsDropdown
from
'
ee/analytics/repository_analytics/components/select_projects_dropdown.vue
'
;
const
localVue
=
createLocalVue
();
describe
(
'
Download test coverage component
'
,
()
=>
{
let
wrapper
;
...
...
@@ -27,7 +25,6 @@ describe('Download test coverage component', () => {
const
createComponent
=
()
=>
{
wrapper
=
shallowMount
(
DownloadTestCoverage
,
{
localVue
,
data
()
{
return
{
hasError
:
false
,
...
...
ee/spec/frontend/analytics/repository_analytics/components/group_repository_analytics_spec.js
View file @
165a756a
import
{
shallowMount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
DownloadTestCoverage
from
'
ee/analytics/repository_analytics/components/download_test_coverage.vue
'
;
import
GroupRepositoryAnalytics
,
{
VISIT_EVENT_FEATURE_FLAG
,
...
...
@@ -6,14 +6,13 @@ import GroupRepositoryAnalytics, {
}
from
'
ee/analytics/repository_analytics/components/group_repository_analytics.vue
'
;
import
Api
from
'
~/api
'
;
const
localVue
=
createLocalVue
();
jest
.
mock
(
'
~/api.js
'
);
describe
(
'
Group repository analytics app
'
,
()
=>
{
let
wrapper
;
const
createComponent
=
(
glFeatures
=
{})
=>
{
wrapper
=
shallowMount
(
GroupRepositoryAnalytics
,
{
localVue
,
provide
:
{
glFeatures
}
});
wrapper
=
shallowMount
(
GroupRepositoryAnalytics
,
{
provide
:
{
glFeatures
}
});
};
afterEach
(()
=>
{
...
...
ee/spec/frontend/analytics/repository_analytics/components/select_projects_dropdown_spec.js
View file @
165a756a
...
...
@@ -5,11 +5,9 @@ import {
GlLoadingIcon
,
GlIcon
,
}
from
'
@gitlab/ui
'
;
import
{
shallowMount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
SelectProjectsDropdown
from
'
ee/analytics/repository_analytics/components/select_projects_dropdown.vue
'
;
const
localVue
=
createLocalVue
();
describe
(
'
Select projects dropdown component
'
,
()
=>
{
let
wrapper
;
...
...
@@ -22,7 +20,6 @@ describe('Select projects dropdown component', () => {
const
createComponent
=
({
data
=
{},
apolloGroupProjects
=
{}
}
=
{})
=>
{
wrapper
=
shallowMount
(
SelectProjectsDropdown
,
{
localVue
,
data
()
{
return
{
groupProjects
:
[
...
...
ee/spec/frontend/analytics/repository_analytics/components/test_coverage_summary_spec.js
View file @
165a756a
import
{
GlDeprecatedSkeletonLoading
as
GlSkeletonLoading
}
from
'
@gitlab/ui
'
;
import
{
GlSingleStat
}
from
'
@gitlab/ui/dist/charts
'
;
import
{
shallowMount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
TestCoverageSummary
from
'
ee/analytics/repository_analytics/components/test_coverage_summary.vue
'
;
import
{
extendedWrapper
}
from
'
helpers/vue_test_utils_helper
'
;
const
localVue
=
createLocalVue
();
describe
(
'
Test coverage table component
'
,
()
=>
{
let
wrapper
;
...
...
@@ -21,7 +19,6 @@ describe('Test coverage table component', () => {
const
createComponent
=
({
data
=
{}
}
=
{})
=>
{
wrapper
=
extendedWrapper
(
shallowMount
(
TestCoverageSummary
,
{
localVue
,
data
()
{
return
{
projectCount
:
null
,
...
...
ee/spec/frontend/analytics/repository_analytics/components/test_coverage_table_spec.js
View file @
165a756a
import
{
GlTable
}
from
'
@gitlab/ui
'
;
import
{
mount
,
shallowMount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
{
nextTick
}
from
'
vue
'
;
import
{
mount
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
Vue
,
{
nextTick
}
from
'
vue
'
;
import
VueApollo
from
'
vue-apollo
'
;
import
SelectProjectsDropdown
from
'
ee/analytics/repository_analytics/components/select_projects_dropdown.vue
'
;
import
TestCoverageTable
from
'
ee/analytics/repository_analytics/components/test_coverage_table.vue
'
;
...
...
@@ -14,8 +14,7 @@ import { defaultTestCoverageTable, projects } from '../mock_data';
jest
.
mock
(
'
~/api.js
'
);
const
localVue
=
createLocalVue
();
localVue
.
use
(
VueApollo
);
Vue
.
use
(
VueApollo
);
describe
(
'
Test coverage table component
'
,
()
=>
{
let
wrapper
;
...
...
@@ -48,7 +47,6 @@ describe('Test coverage table component', () => {
wrapper
=
extendedWrapper
(
mountFn
(
TestCoverageTable
,
{
localVue
,
apolloProvider
:
mockApollo
,
data
()
{
return
{
...
...
spec/frontend/analytics/usage_trends/components/usage_trends_count_chart_spec.js
View file @
165a756a
import
{
GlAlert
}
from
'
@gitlab/ui
'
;
import
{
GlLineChart
}
from
'
@gitlab/ui/dist/charts
'
;
import
{
createLocalVue
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
VueApollo
from
'
vue-apollo
'
;
import
createMockApollo
from
'
helpers/mock_apollo_helper
'
;
import
UsageTrendsCountChart
from
'
~/analytics/usage_trends/components/usage_trends_count_chart.vue
'
;
...
...
@@ -9,8 +10,7 @@ import ChartSkeletonLoader from '~/vue_shared/components/resizable_chart/skeleto
import
{
mockQueryResponse
,
mockApolloResponse
}
from
'
../apollo_mock_data
'
;
import
{
mockCountsData1
}
from
'
../mock_data
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
VueApollo
);
Vue
.
use
(
VueApollo
);
const
loadChartErrorMessage
=
'
My load error message
'
;
const
noDataMessage
=
'
My no data message
'
;
...
...
@@ -39,7 +39,6 @@ describe('UsageTrendsCountChart', () => {
const
createComponent
=
({
responseHandler
})
=>
{
return
shallowMount
(
UsageTrendsCountChart
,
{
localVue
,
apolloProvider
:
createMockApollo
([[
statsQuery
,
responseHandler
]]),
propsData
:
{
...
mockChartConfig
},
});
...
...
spec/frontend/analytics/usage_trends/components/users_chart_spec.js
View file @
165a756a
import
{
GlAlert
}
from
'
@gitlab/ui
'
;
import
{
GlAreaChart
}
from
'
@gitlab/ui/dist/charts
'
;
import
{
createLocalVue
,
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
Vue
from
'
vue
'
;
import
VueApollo
from
'
vue-apollo
'
;
import
createMockApollo
from
'
helpers/mock_apollo_helper
'
;
import
UsersChart
from
'
~/analytics/usage_trends/components/users_chart.vue
'
;
...
...
@@ -13,8 +14,7 @@ import {
roundedSortedCountsMonthlyChartData2
,
}
from
'
../mock_data
'
;
const
localVue
=
createLocalVue
();
localVue
.
use
(
VueApollo
);
Vue
.
use
(
VueApollo
);
describe
(
'
UsersChart
'
,
()
=>
{
let
wrapper
;
...
...
@@ -34,7 +34,6 @@ describe('UsersChart', () => {
endDate
:
new
Date
(
2020
,
10
,
1
),
totalDataPoints
:
mockCountsData2
.
length
,
},
localVue
,
apolloProvider
:
createMockApollo
([[
usersQuery
,
queryHandler
]]),
data
()
{
return
{
loadingError
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment