Skip to content

Commit

Permalink
Fix pipeline version multi-select issue
Browse files Browse the repository at this point in the history
  • Loading branch information
DaoDaoNoCode committed May 15, 2024
1 parent 95611b7 commit b4b1b2f
Show file tree
Hide file tree
Showing 11 changed files with 352 additions and 300 deletions.
433 changes: 219 additions & 214 deletions frontend/src/__mocks__/mockPipelineVersionsProxy.ts

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ describe('Pipeline create runs', () => {
description: 'New run description',
pipeline_version_reference: {
pipeline_id: 'test-pipeline',
pipeline_version_id: '8ce2d04a0-828c-45209fdf1c20',
pipeline_version_id: 'test-pipeline-version',
},
runtime_config: {
parameters: { min_max_scaler: false, neighbors: 1, standard_scaler: 'yes' },
Expand Down Expand Up @@ -218,7 +218,7 @@ describe('Pipeline create runs', () => {
description: '',
pipeline_version_reference: {
pipeline_id: 'test-pipeline',
pipeline_version_id: '8ce2d04a0-828c-45209fdf1c20',
pipeline_version_id: 'test-pipeline-version',
},
runtime_config: {
parameters: { min_max_scaler: false, neighbors: 1, standard_scaler: false },
Expand Down Expand Up @@ -343,7 +343,7 @@ describe('Pipeline create runs', () => {
description: '',
pipeline_version_reference: {
pipeline_id: 'test-pipeline',
pipeline_version_id: '8ce2d04a0-828c-45209fdf1c20',
pipeline_version_id: 'test-pipeline-version',
},
runtime_config: createRunParams.runtime_config,
service_account: '',
Expand Down Expand Up @@ -456,7 +456,7 @@ describe('Pipeline create runs', () => {
description: '',
pipeline_version_reference: {
pipeline_id: 'test-pipeline',
pipeline_version_id: '8ce2d04a0-828c-45209fdf1c20',
pipeline_version_id: 'test-pipeline-version',
},
runtime_config: createRunParams.runtime_config,
service_account: '',
Expand Down Expand Up @@ -554,7 +554,7 @@ describe('Pipeline create runs', () => {
description: 'New job description',
pipeline_version_reference: {
pipeline_id: 'test-pipeline',
pipeline_version_id: '8ce2d04a0-828c-45209fdf1c20',
pipeline_version_id: 'test-pipeline-version',
},
runtime_config: {
parameters: { min_max_scaler: false, neighbors: 1, standard_scaler: 'no' },
Expand Down Expand Up @@ -626,7 +626,7 @@ describe('Pipeline create runs', () => {
description: '',
pipeline_version_reference: {
pipeline_id: 'test-pipeline',
pipeline_version_id: '8ce2d04a0-828c-45209fdf1c20',
pipeline_version_id: 'test-pipeline-version',
},
runtime_config: {
parameters: { min_max_scaler: false, neighbors: 0, standard_scaler: 'yes' },
Expand Down
Loading

0 comments on commit b4b1b2f

Please sign in to comment.