Commit 3f66aa66 authored by Peter Hegman's avatar Peter Hegman

Merge branch 'move-component-to-proper-dir' into 'master'

Move component out of pages/ dir

See merge request gitlab-org/gitlab!79191
parents dd4a2627 3c22e0c1
......@@ -11,7 +11,7 @@ export default {
WelcomePage,
LegacyContainer,
CreditCardVerification: () =>
import('ee_component/pages/groups/new/components/credit_card_verification.vue'),
import('ee_component/namespaces/verification/components/credit_card_verification.vue'),
},
directives: {
SafeHtml,
......
import { GlButton } from '@gitlab/ui';
import { mountExtended } from 'helpers/vue_test_utils_helper';
import CreditCardVerification from 'ee/pages/groups/new/components/credit_card_verification.vue';
import { I18N_FORM_TITLE, I18N_FORM_EXPLANATION } from 'ee/pages/groups/new/constants';
import CreditCardVerification from 'ee/namespaces/verification/components/credit_card_verification.vue';
import { I18N_FORM_TITLE, I18N_FORM_EXPLANATION } from 'ee/namespaces/verification/constants';
describe('Verification page', () => {
let wrapper;
......
......@@ -2,7 +2,7 @@ import { GlButton } from '@gitlab/ui';
import { mount } from '@vue/test-utils';
import WelcomePage from '~/vue_shared/new_namespace/components/welcome.vue';
import NewNamespacePage from '~/vue_shared/new_namespace/new_namespace_page.vue';
import VerificationPage from 'ee_component/pages/groups/new/components/credit_card_verification.vue';
import VerificationPage from 'ee_component/namespaces/verification/components/credit_card_verification.vue';
import Zuora from 'ee/billings/components/zuora.vue';
describe('Experimental new project creation app', () => {
......
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