diff --git a/CHANGELOG.md b/CHANGELOG.md index b61ce91..c0477ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ * Jest/RTL: Increase test coverage for FindImportProfile component (UIPFIMP-65) * Jest/RTL: Cover utils with unit tests (UIPFIMP-64) * Jest/RTL: Increase test coverage for AbstractContainer component (UIPFIMP-66) +* Clean up eslint errors (UIPFIMP-68) ## [7.0.0](https://github.com/folio-org/ui-plugin-find-import-profile/tree/v7.0.0) (2023-10-13) diff --git a/src/FindImportProfile/FindImportProfileContainer/tests/ActionProfilesContainer.test.js b/src/FindImportProfile/FindImportProfileContainer/tests/ActionProfilesContainer.test.js index a100426..d261315 100644 --- a/src/FindImportProfile/FindImportProfileContainer/tests/ActionProfilesContainer.test.js +++ b/src/FindImportProfile/FindImportProfileContainer/tests/ActionProfilesContainer.test.js @@ -12,9 +12,11 @@ import { buildMutator, buildResources, } from '@folio/stripes-data-transfer-components/test/helpers'; -import { buildStripes } from '../../../../test/jest/helpers'; import { actionProfilesShape } from '@folio/data-import/src/settings/ActionProfiles'; -import { translationsProperties } from '../../../../test/jest/helpers'; +import { + buildStripes, + translationsProperties, +} from '../../../../test/jest/helpers'; import ActionProfilesContainer from '../ActionProfilesContainer'; diff --git a/src/FindImportProfile/FindImportProfileContainer/tests/JobProfilesContainer.test.js b/src/FindImportProfile/FindImportProfileContainer/tests/JobProfilesContainer.test.js index de79c30..e92952a 100644 --- a/src/FindImportProfile/FindImportProfileContainer/tests/JobProfilesContainer.test.js +++ b/src/FindImportProfile/FindImportProfileContainer/tests/JobProfilesContainer.test.js @@ -12,9 +12,11 @@ import { buildMutator, buildResources, } from '@folio/stripes-data-transfer-components/test/helpers'; -import { buildStripes } from '../../../../test/jest/helpers'; import { jobProfilesShape } from '@folio/data-import/src/settings/JobProfiles'; -import { translationsProperties } from '../../../../test/jest/helpers'; +import { + buildStripes, + translationsProperties, +} from '../../../../test/jest/helpers'; import JobProfilesContainer from '../JobProfilesContainer'; diff --git a/src/FindImportProfile/FindImportProfileContainer/tests/MappingProfilesContainer.test.js b/src/FindImportProfile/FindImportProfileContainer/tests/MappingProfilesContainer.test.js index bcb0687..0eebe55 100644 --- a/src/FindImportProfile/FindImportProfileContainer/tests/MappingProfilesContainer.test.js +++ b/src/FindImportProfile/FindImportProfileContainer/tests/MappingProfilesContainer.test.js @@ -12,9 +12,11 @@ import { buildMutator, buildResources, } from '@folio/stripes-data-transfer-components/test/helpers'; -import { buildStripes } from '../../../../test/jest/helpers'; import { mappingProfilesShape } from '@folio/data-import/src/settings/MappingProfiles'; -import { translationsProperties } from '../../../../test/jest/helpers'; +import { + buildStripes, + translationsProperties, +} from '../../../../test/jest/helpers'; import MappingProfilesContainer from '../MappingProfilesContainer'; diff --git a/src/FindImportProfile/FindImportProfileContainer/tests/MatchProfilesContainer.test.js b/src/FindImportProfile/FindImportProfileContainer/tests/MatchProfilesContainer.test.js index 1c237cd..5fc0ef8 100644 --- a/src/FindImportProfile/FindImportProfileContainer/tests/MatchProfilesContainer.test.js +++ b/src/FindImportProfile/FindImportProfileContainer/tests/MatchProfilesContainer.test.js @@ -12,9 +12,11 @@ import { buildMutator, buildResources, } from '@folio/stripes-data-transfer-components/test/helpers'; -import { buildStripes } from '../../../../test/jest/helpers'; import { matchProfilesShape } from '@folio/data-import/src/settings/MatchProfiles'; -import { translationsProperties } from '../../../../test/jest/helpers'; +import { + buildStripes, + translationsProperties, +} from '../../../../test/jest/helpers'; import MatchProfilesContainer from '../MatchProfilesContainer';