diff --git a/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getLabwareDefinitionUri.test.ts b/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getLabwareDefinitionUri.test.ts index a6bae9a0439..8ca53087b18 100644 --- a/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getLabwareDefinitionUri.test.ts +++ b/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getLabwareDefinitionUri.test.ts @@ -1,8 +1,9 @@ +import { describe, it, vi, beforeEach, expect } from 'vitest' import { getLabwareDefURI, LabwareDefinition2 } from '@opentrons/shared-data' import { getLabwareDefinitionUri } from '../getLabwareDefinitionUri' import type { LoadedLabware } from '@opentrons/shared-data' -jest.mock('@opentrons/shared-data') +vi.mock('@opentrons/shared-data') const mockGetLabareDefURI = getLabwareDefURI as jest.MockedFunction< typeof getLabwareDefURI