Skip to content

Commit 02df436

Browse files
committed
propagate mix form's name/description to Args
1 parent 630b1b2 commit 02df436

File tree

2 files changed

+37
-6
lines changed

2 files changed

+37
-6
lines changed

protocol-designer/src/steplist/formLevel/stepFormToArgs/mixFormToArgs.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,8 @@ export const mixFormToArgs = (
8989
)
9090
return {
9191
commandCreatorFnName: 'mix',
92-
name: `Mix ${hydratedFormData.id}`,
93-
// TODO real name for steps
94-
description: 'description would be here 2018-03-01',
95-
// TODO get from form
92+
name: hydratedFormData.stepName,
93+
description: hydratedFormData.stepDetails,
9694
labware: labware.id,
9795
wells: orderedWells,
9896
volume,

protocol-designer/src/steplist/formLevel/stepFormToArgs/test/mixFormToArgs.test.ts

+35-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ beforeEach(() => {
2222
hydratedForm = {
2323
id: 'stepId',
2424
stepType: 'mix',
25-
stepName: 'mix',
26-
stepDetails: '',
25+
stepName: 'Cool Mix Step',
26+
stepDetails: 'Here we mix 2 wells',
2727
changeTip: 'always',
2828
labware: {
2929
id: 'labwareId',
@@ -72,6 +72,39 @@ afterEach(() => {
7272
})
7373

7474
describe('mix step form -> command creator args', () => {
75+
it('mixFormToArgs propagates form fields to MixStepArgs', () => {
76+
const args = mixFormToArgs(hydratedForm)
77+
expect(args).toMatchObject({
78+
commandCreatorFnName: 'mix',
79+
name: 'Cool Mix Step', // make sure name and description are present
80+
description: 'Here we mix 2 wells',
81+
labware: 'labwareId',
82+
wells: [ 'A1', 'A2' ],
83+
volume: '12',
84+
times: '2',
85+
touchTip: false,
86+
touchTipMmFromBottom: 9.54, // where does this number come from?
87+
changeTip: 'always',
88+
blowoutLocation: null,
89+
pipette: 'pipetteId',
90+
aspirateFlowRateUlSec: 5, // make sure flow rates are numbers instead of strings
91+
dispenseFlowRateUlSec: 4,
92+
blowoutFlowRateUlSec: 1000,
93+
aspirateOffsetFromBottomMm: 0.5,
94+
dispenseOffsetFromBottomMm: 0.5,
95+
blowoutOffsetFromTopMm: 0,
96+
aspirateDelaySeconds: null,
97+
tipRack: 'mockTiprack',
98+
dispenseDelaySeconds: null,
99+
dropTipLocation: undefined,
100+
nozzles: undefined,
101+
aspirateXOffset: 0,
102+
dispenseXOffset: 0,
103+
aspirateYOffset: 0,
104+
dispenseYOffset: 0
105+
})
106+
})
107+
75108
it('mixFormToArgs calls getOrderedWells correctly', () => {
76109
mixFormToArgs(hydratedForm)
77110

0 commit comments

Comments
 (0)