Skip to content

Commit

Permalink
Merge branch 'protocol_designer-migrate-webpack-to-vite' of https://g…
Browse files Browse the repository at this point in the history
…ithub.com/Opentrons/opentrons into protocol_designer-migrate-webpack-to-vite
  • Loading branch information
koji committed Mar 1, 2024
2 parents 0728585 + 8a732ef commit aaaab0b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions step-generation/src/fixtures/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,12 @@ export const tiprackWellNamesFlat = [
'G12',
'H12',
]
export const DEFAULT_PIPETTE = 'p300SingleId'
export const MULTI_PIPETTE = 'p300MultiId'
export const PIPETTE_96 = 'p100096Id'
export const SOURCE_LABWARE = 'sourcePlateId'
export const DEST_LABWARE = 'destPlateId'
export const TROUGH_LABWARE = 'troughId'
export const DEFAULT_BLOWOUT_WELL = 'A1'
export const TIPRACK_1 = 'tiprack1Id'
export const AIR_GAP_META = { isAirGap: true } // to differentiate if the aspirate or dispense command is an air gap or not
2 changes: 1 addition & 1 deletion step-generation/src/fixtures/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './commandFixtures'
export * from './robotStateFixtures'
export * from './commandFixtures'
6 changes: 3 additions & 3 deletions step-generation/src/fixtures/robotStateFixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ import {
TEMPERATURE_DEACTIVATED,
FIXED_TRASH_ID,
} from '../constants'
import { makeInitialRobotState } from '../utils'
import {
DEFAULT_PIPETTE,
MULTI_PIPETTE,
PIPETTE_96,
SOURCE_LABWARE,
DEST_LABWARE,
TROUGH_LABWARE,
} from './commandFixtures'
import { makeInitialRobotState } from '../utils'
import { tiprackWellNamesFlat } from './data'
tiprackWellNamesFlat,
} from './data'
import type { LabwareDefinition2 } from '@opentrons/shared-data'
import type { AdditionalEquipmentEntities } from '../types'
import type {
Expand Down
2 changes: 1 addition & 1 deletion step-generation/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ export * from './robotStateSelectors'
export * from './types'
export * from './constants'
export * from './getNextRobotStateAndWarnings'
export * from './fixtures'
export * from './fixtures/robotStateFixtures'

0 comments on commit aaaab0b

Please sign in to comment.