From 32718c87efc1e73af5d2828ef788f2d002f43398 Mon Sep 17 00:00:00 2001 From: koji Date: Fri, 1 Mar 2024 17:57:55 -0500 Subject: [PATCH] import vitest for migration --- .../utils/__tests__/getLabwareDefinitionUri.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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