@@ -22,8 +22,8 @@ beforeEach(() => {
22
22
hydratedForm = {
23
23
id : 'stepId' ,
24
24
stepType : 'mix' ,
25
- stepName : 'mix ' ,
26
- stepDetails : '' ,
25
+ stepName : 'Cool Mix Step ' ,
26
+ stepDetails : 'Here we mix 2 wells ' ,
27
27
changeTip : 'always' ,
28
28
labware : {
29
29
id : 'labwareId' ,
@@ -72,6 +72,39 @@ afterEach(() => {
72
72
} )
73
73
74
74
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
+
75
108
it ( 'mixFormToArgs calls getOrderedWells correctly' , ( ) => {
76
109
mixFormToArgs ( hydratedForm )
77
110
0 commit comments