Skip to content

Commit

Permalink
move around SG fixtures so PD does not accidentally import test code
Browse files Browse the repository at this point in the history
  • Loading branch information
shlokamin committed Mar 1, 2024
1 parent cd2348d commit 8a732ef
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 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
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

0 comments on commit 8a732ef

Please sign in to comment.