@@ -26,7 +26,7 @@ describe('getSimplestDeckConfigForProtocol', () => {
2626 )
2727 } )
2828 it . only ( 'returns staging area fixtures if commands address column 4 areas' , ( ) => {
29- const cutoutConfigs = getSimplestDeckConfigForProtocol ( ( {
29+ const cutoutConfigs = getSimplestDeckConfigForProtocol ( {
3030 commands : [
3131 {
3232 ...RUN_TIME_COMMAND_STUB_MIXIN ,
@@ -70,7 +70,7 @@ describe('getSimplestDeckConfigForProtocol', () => {
7070 } ,
7171 ] ,
7272 labware : [ ] ,
73- } as unknown ) as CompletedProtocolAnalysis )
73+ } as unknown as CompletedProtocolAnalysis )
7474 expect ( cutoutConfigs ) . toEqual ( [
7575 ...FLEX_SIMPLEST_DECK_CONFIG_PROTOCOL_SPEC . slice ( 0 , 8 ) ,
7676 {
@@ -96,7 +96,7 @@ describe('getSimplestDeckConfigForProtocol', () => {
9696 ] )
9797 } )
9898 it ( 'returns simplest cutout fixture where many are possible' , ( ) => {
99- const cutoutConfigs = getSimplestDeckConfigForProtocol ( ( {
99+ const cutoutConfigs = getSimplestDeckConfigForProtocol ( {
100100 commands : [
101101 {
102102 ...RUN_TIME_COMMAND_STUB_MIXIN ,
@@ -109,7 +109,7 @@ describe('getSimplestDeckConfigForProtocol', () => {
109109 } ,
110110 ] ,
111111 labware : [ ] ,
112- } as unknown ) as CompletedProtocolAnalysis )
112+ } as unknown as CompletedProtocolAnalysis )
113113 expect ( cutoutConfigs ) . toEqual ( [
114114 ...FLEX_SIMPLEST_DECK_CONFIG_PROTOCOL_SPEC . slice ( 0 , 11 ) ,
115115 {
@@ -120,7 +120,7 @@ describe('getSimplestDeckConfigForProtocol', () => {
120120 ] )
121121 } )
122122 it ( 'returns compatible cutout fixture where multiple addressable requirements present' , ( ) => {
123- const cutoutConfigs = getSimplestDeckConfigForProtocol ( ( {
123+ const cutoutConfigs = getSimplestDeckConfigForProtocol ( {
124124 commands : [
125125 {
126126 ...RUN_TIME_COMMAND_STUB_MIXIN ,
@@ -142,7 +142,7 @@ describe('getSimplestDeckConfigForProtocol', () => {
142142 } ,
143143 ] ,
144144 labware : [ ] ,
145- } as unknown ) as CompletedProtocolAnalysis )
145+ } as unknown as CompletedProtocolAnalysis )
146146 expect ( cutoutConfigs ) . toEqual ( [
147147 ...FLEX_SIMPLEST_DECK_CONFIG_PROTOCOL_SPEC . slice ( 0 , 11 ) ,
148148 {
@@ -153,7 +153,7 @@ describe('getSimplestDeckConfigForProtocol', () => {
153153 ] )
154154 } )
155155 it ( 'returns deck with trash in A3 when legacy trash labware is present' , ( ) => {
156- const cutoutConfigs = getSimplestDeckConfigForProtocol ( ( {
156+ const cutoutConfigs = getSimplestDeckConfigForProtocol ( {
157157 commands : [ ] ,
158158 labware : [
159159 {
@@ -164,7 +164,7 @@ describe('getSimplestDeckConfigForProtocol', () => {
164164 location : { slotName : 'A3' } ,
165165 } ,
166166 ] ,
167- } as unknown ) as CompletedProtocolAnalysis )
167+ } as unknown as CompletedProtocolAnalysis )
168168 expect ( cutoutConfigs ) . toEqual ( [
169169 ...FLEX_SIMPLEST_DECK_CONFIG_PROTOCOL_SPEC . slice ( 0 , 8 ) ,
170170 {
0 commit comments