From cd2348d4110fcca3d177732fd32423d37a4ab026 Mon Sep 17 00:00:00 2001 From: Shlok Amin Date: Fri, 1 Mar 2024 13:39:58 -0500 Subject: [PATCH] only export robot state fixtures outside of SG --- step-generation/src/fixtures/index.ts | 2 +- step-generation/src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/step-generation/src/fixtures/index.ts b/step-generation/src/fixtures/index.ts index 5174506d42f..ed7f6c08311 100644 --- a/step-generation/src/fixtures/index.ts +++ b/step-generation/src/fixtures/index.ts @@ -1,2 +1,2 @@ -export * from './commandFixtures' export * from './robotStateFixtures' +export * from './commandFixtures' diff --git a/step-generation/src/index.ts b/step-generation/src/index.ts index d155f16b529..36c4b115386 100644 --- a/step-generation/src/index.ts +++ b/step-generation/src/index.ts @@ -29,4 +29,4 @@ export * from './robotStateSelectors' export * from './types' export * from './constants' export * from './getNextRobotStateAndWarnings' -export * from './fixtures' +export * from './fixtures/robotStateFixtures'