Fixes pathing after aliases removed

This commit is contained in:
mabashian 2020-05-18 15:06:20 -04:00
parent 67b826b438
commit da1a19ce88
3 changed files with 8 additions and 7 deletions

View File

@ -7,7 +7,7 @@ import scmCredential from './data.scmCredential.json';
import credentialTypes from './data.credentialTypes.json';
import CredentialForm from './CredentialForm';
jest.mock('@api');
jest.mock('../../../api');
describe('<CredentialForm />', () => {
let wrapper;

View File

@ -3,9 +3,12 @@ import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro';
import { useField } from 'formik';
import { FileUpload, FormGroup } from '@patternfly/react-core';
import FormField from '@components/FormField';
import { FormColumnLayout, FormFullWidthLayout } from '@components/FormLayout';
import { required } from '@util/validators';
import FormField from '../../../../components/FormField';
import {
FormColumnLayout,
FormFullWidthLayout,
} from '../../../../components/FormLayout';
import { required } from '../../../../util/validators';
const GoogleComputeEngineSubForm = ({ i18n }) => {
const [fileError, setFileError] = useState(null);

View File

@ -1,5 +1,3 @@
export {
default as GoogleComputeEngineSubForm,
} from './GoogleComputeEngineSubForm';
export { default as GoogleComputeEngineSubForm } from './GoogleComputeEngineSubForm';
export { default as ManualSubForm } from './ManualSubForm';
export { default as SourceControlSubForm } from './SourceControlSubForm';