stable
Clone or download
Read-only
Closes request #33661 Migrate move-artifact-action app to Vue3 + Vite + Vitest + Pinia How to test: --> The CI should be happy --> No functional change expected Change-Id: I17c5b38e5a3217de3cd709a70210598d6f75529f
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/tracker/scripts/move-artifact-action/package.json | +3 | −4 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/pnpm-lock.yaml | +48 | −29 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/api/rest-querier.ts | +1 | −7 | Go to diff View file |
R | plugins/tracker/scripts/move-artifact-action/src/store/types.ts | Go to diff View file | ||
M | plugins/tracker/scripts/move-artifact-action/src/components/DryRunFullyMigratedFieldState.test.ts | +21 | −18 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/DryRunFullyMigratedFieldState.vue | +7 | −9 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/DryRunNotMigratedFieldState.test.ts | +26 | −16 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/DryRunNotMigratedFieldState.vue | +15 | −17 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/DryRunPartiallyMigratedFieldState.test.ts | +16 | −16 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/DryRunPartiallyMigratedFieldState.vue | +7 | −6 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/FieldsListDisplayer.test.ts | +8 | −8 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/FieldsListDisplayer.vue | +3 | −2 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/MoveModal.test.ts | +86 | −85 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/MoveModal.vue | +32 | −48 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/MoveModalSelectors.test.ts | +47 | −34 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/MoveModalSelectors.vue | +8 | −10 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/ProjectSelector.test.ts | +20 | −25 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/ProjectSelector.vue | +8 | −19 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/TrackerSelector.test.ts | +11 | −14 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/components/TrackerSelector.vue | +12 | −12 | Go to diff View file |
D | plugins/tracker/scripts/move-artifact-action/src/helpers/ProjectsSorter.test.ts | +0 | −45 | Go to diff View file |
D | plugins/tracker/scripts/move-artifact-action/src/helpers/TrackerSelectorOptions.test.ts | +0 | −44 | Go to diff View file |
D | plugins/tracker/scripts/move-artifact-action/src/helpers/TrackerSelectorOptions.ts | +0 | −33 | Go to diff View file |
M | plugins/tracker/scripts/move-artifact-action/src/modal.ts | +3 | −3 | Go to diff View file |
D | plugins/tracker/scripts/move-artifact-action/src/store/actions.ts | +0 | −116 | Go to diff View file |
D | plugins/tracker/scripts/move-artifact-action/src/store/index.ts | +0 | −33 | Go to diff View file |
D | plugins/tracker/scripts/move-artifact-action/src/store/mutations.test.ts | +0 | −177 | Go to diff View file |
D | plugins/tracker/scripts/move-artifact-action/src/store/mutations.ts | +0 | −105 | Go to diff View file |
D | plugins/tracker/scripts/move-artifact-action/src/store/state.ts | +0 | −38 | Go to diff View file |
A | plugins/tracker/scripts/move-artifact-action/src/stores/dry-run.test.ts | +100 | −0 | Go to diff View file |
A | plugins/tracker/scripts/move-artifact-action/src/stores/dry-run.ts | +55 | −0 | Go to diff View file |
R | plugins/tracker/scripts/move-artifact-action/src/store/actions.test.ts | Go to diff View file | ||
A | plugins/tracker/scripts/move-artifact-action/src/stores/modal.ts | +87 | −0 | Go to diff View file |
A | plugins/tracker/scripts/move-artifact-action/src/stores/selectors.test.ts | +154 | −0 | Go to diff View file |
A | plugins/tracker/scripts/move-artifact-action/src/stores/selectors.ts | +95 | −0 | Go to diff View file |
R | plugins/tracker/scripts/move-artifact-action/src/helpers/ProjectsSorter.ts | Go to diff View file | ||
M | plugins/tracker/scripts/move-artifact-action/tests/global-options-for-tests.ts | +10 | −20 | Go to diff View file |