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
17bdbe8a
Commit
17bdbe8a
authored
Jun 30, 2021
by
Vitaly Slobodin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing .vue extenions to imports
parent
df3a9aa8
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
ee/spec/frontend/analytics/merge_request_analytics/components/throughput_stats_spec.js
...rge_request_analytics/components/throughput_stats_spec.js
+1
-1
ee/spec/frontend/boards/toggle_labels_spec.js
ee/spec/frontend/boards/toggle_labels_spec.js
+1
-1
ee/spec/frontend/on_demand_scans/components/profile_selector/scanner_profile_summary_spec.js
...mponents/profile_selector/scanner_profile_summary_spec.js
+1
-1
ee/spec/frontend/on_demand_scans/components/profile_selector/site_profile_summary_spec.js
.../components/profile_selector/site_profile_summary_spec.js
+1
-1
ee/spec/frontend/oncall_schedule/add_edit_schedule_modal_spec.js
.../frontend/oncall_schedule/add_edit_schedule_modal_spec.js
+2
-2
ee/spec/frontend/oncall_schedule/delete_schedule_modal_spec.js
...ec/frontend/oncall_schedule/delete_schedule_modal_spec.js
+1
-1
No files found.
ee/spec/frontend/analytics/merge_request_analytics/components/throughput_stats_spec.js
View file @
17bdbe8a
import
{
GlSkeletonLoader
}
from
'
@gitlab/ui
'
;
import
{
GlSingleStat
}
from
'
@gitlab/ui/dist/charts
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
ThroughputStats
from
'
ee/analytics/merge_request_analytics/components/throughput_stats
'
;
import
ThroughputStats
from
'
ee/analytics/merge_request_analytics/components/throughput_stats
.vue
'
;
import
{
stats
}
from
'
../mock_data
'
;
describe
(
'
ThroughputStats
'
,
()
=>
{
...
...
ee/spec/frontend/boards/toggle_labels_spec.js
View file @
17bdbe8a
import
{
GlToggle
}
from
'
@gitlab/ui
'
;
import
{
shallowMount
,
createLocalVue
}
from
'
@vue/test-utils
'
;
import
Vuex
from
'
vuex
'
;
import
ToggleLabels
from
'
ee/boards/components/toggle_labels
'
;
import
ToggleLabels
from
'
ee/boards/components/toggle_labels
.vue
'
;
import
LocalStorageSync
from
'
~/vue_shared/components/local_storage_sync.vue
'
;
const
localVue
=
createLocalVue
();
...
...
ee/spec/frontend/on_demand_scans/components/profile_selector/scanner_profile_summary_spec.js
View file @
17bdbe8a
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
App
from
'
ee/on_demand_scans/components/profile_selector/scanner_profile_summary
'
;
import
App
from
'
ee/on_demand_scans/components/profile_selector/scanner_profile_summary
.vue
'
;
import
{
scannerProfiles
}
from
'
ee_jest/on_demand_scans/mocks/mock_data
'
;
const
[
profile
]
=
scannerProfiles
;
...
...
ee/spec/frontend/on_demand_scans/components/profile_selector/site_profile_summary_spec.js
View file @
17bdbe8a
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
App
from
'
ee/on_demand_scans/components/profile_selector/site_profile_summary
'
;
import
App
from
'
ee/on_demand_scans/components/profile_selector/site_profile_summary
.vue
'
;
import
{
siteProfiles
}
from
'
ee_jest/on_demand_scans/mocks/mock_data
'
;
describe
(
'
DastSiteProfileSummary
'
,
()
=>
{
...
...
ee/spec/frontend/oncall_schedule/add_edit_schedule_modal_spec.js
View file @
17bdbe8a
...
...
@@ -5,8 +5,8 @@ import AddEditScheduleForm from 'ee/oncall_schedules/components/add_edit_schedul
import
AddEditScheduleModal
,
{
i18n
,
}
from
'
ee/oncall_schedules/components/add_edit_schedule_modal.vue
'
;
import
{
editScheduleModalId
}
from
'
ee/oncall_schedules/components/oncall_schedule
'
;
import
{
addScheduleModalId
}
from
'
ee/oncall_schedules/components/oncall_schedules_wrapper
'
;
import
{
editScheduleModalId
}
from
'
ee/oncall_schedules/components/oncall_schedule
.vue
'
;
import
{
addScheduleModalId
}
from
'
ee/oncall_schedules/components/oncall_schedules_wrapper
.vue
'
;
import
updateOncallScheduleMutation
from
'
ee/oncall_schedules/graphql/mutations/update_oncall_schedule.mutation.graphql
'
;
import
getOncallSchedulesWithRotationsQuery
from
'
ee/oncall_schedules/graphql/queries/get_oncall_schedules.query.graphql
'
;
import
createMockApollo
from
'
helpers/mock_apollo_helper
'
;
...
...
ee/spec/frontend/oncall_schedule/delete_schedule_modal_spec.js
View file @
17bdbe8a
...
...
@@ -4,7 +4,7 @@ import VueApollo from 'vue-apollo';
import
DeleteScheduleModal
,
{
i18n
,
}
from
'
ee/oncall_schedules/components/delete_schedule_modal.vue
'
;
import
{
deleteScheduleModalId
}
from
'
ee/oncall_schedules/components/oncall_schedule
'
;
import
{
deleteScheduleModalId
}
from
'
ee/oncall_schedules/components/oncall_schedule
.vue
'
;
import
destroyOncallScheduleMutation
from
'
ee/oncall_schedules/graphql/mutations/destroy_oncall_schedule.mutation.graphql
'
;
import
getOncallSchedulesQuery
from
'
ee/oncall_schedules/graphql/queries/get_oncall_schedules.query.graphql
'
;
import
createMockApollo
from
'
helpers/mock_apollo_helper
'
;
...
...
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