diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-03 12:09:07 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-03 12:09:07 +0000 |
commit | c089cf73c2f1835dc68fd6107d6cbd10fc17f365 (patch) | |
tree | b91f11ed13f00c84ee69e03150d00426279911ef /spec/frontend/projects | |
parent | f14507e586a7f75f0fb71a1d8468b7361be860d4 (diff) | |
download | gitlab-ce-c089cf73c2f1835dc68fd6107d6cbd10fc17f365.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/projects')
-rw-r--r-- | spec/frontend/projects/pipelines/charts/components/app_spec.js | 4 | ||||
-rw-r--r-- | spec/frontend/projects/pipelines/charts/components/statistics_list_spec.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/spec/frontend/projects/pipelines/charts/components/app_spec.js b/spec/frontend/projects/pipelines/charts/components/app_spec.js index 48ea333e2c3..8aeeb4d5d7d 100644 --- a/spec/frontend/projects/pipelines/charts/components/app_spec.js +++ b/spec/frontend/projects/pipelines/charts/components/app_spec.js @@ -1,7 +1,7 @@ import { shallowMount } from '@vue/test-utils'; import { GlColumnChart } from '@gitlab/ui/dist/charts'; -import Component from '~/projects/pipelines/charts/components/app'; -import StatisticsList from '~/projects/pipelines/charts/components/statistics_list'; +import Component from '~/projects/pipelines/charts/components/app.vue'; +import StatisticsList from '~/projects/pipelines/charts/components/statistics_list.vue'; import { counts, timesChartData } from '../mock_data'; describe('ProjectsPipelinesChartsApp', () => { diff --git a/spec/frontend/projects/pipelines/charts/components/statistics_list_spec.js b/spec/frontend/projects/pipelines/charts/components/statistics_list_spec.js index 93130f22407..f78608e9cb2 100644 --- a/spec/frontend/projects/pipelines/charts/components/statistics_list_spec.js +++ b/spec/frontend/projects/pipelines/charts/components/statistics_list_spec.js @@ -1,5 +1,5 @@ import { shallowMount } from '@vue/test-utils'; -import Component from '~/projects/pipelines/charts/components/statistics_list'; +import Component from '~/projects/pipelines/charts/components/statistics_list.vue'; import { counts } from '../mock_data'; describe('StatisticsList', () => { |