From 13f8c0f680b77b659946d9759e0d0398037b8c02 Mon Sep 17 00:00:00 2001 From: Jamey Huffnagle Date: Mon, 2 Dec 2024 21:02:21 -0500 Subject: [PATCH] refactor(monorepo): clean up failing ci --- .eslintignore | 1 + app-shell/src/update.ts | 2 +- .../__tests__/ChooseRobotToRunProtocolSlideout.test.tsx | 4 +--- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.eslintignore b/.eslintignore index 5d9406d522a..5535673df8f 100644 --- a/.eslintignore +++ b/.eslintignore @@ -12,6 +12,7 @@ **/CHANGELOG.md !api/release-notes.md !app-shell/build/release-notes.md +**/.yarn-cache/** # components library storybook-static diff --git a/app-shell/src/update.ts b/app-shell/src/update.ts index bfb3ffed62b..5b926a17c71 100644 --- a/app-shell/src/update.ts +++ b/app-shell/src/update.ts @@ -4,7 +4,7 @@ import updater from 'electron-updater' import { createLogger } from './log' import { getConfig } from './config' import { UI_INITIALIZED, UPDATE_VALUE } from './constants' -import type { UpdateInfo } from '@opentrons/app' +import type { UpdateInfo } from '@opentrons/app/src/redux/shell/types' import type { Action, Dispatch, PlainError } from './types' const autoUpdater = updater.autoUpdater diff --git a/app/src/organisms/Desktop/ChooseRobotToRunProtocolSlideout/__tests__/ChooseRobotToRunProtocolSlideout.test.tsx b/app/src/organisms/Desktop/ChooseRobotToRunProtocolSlideout/__tests__/ChooseRobotToRunProtocolSlideout.test.tsx index 5c7e858fb38..2bab265eb52 100644 --- a/app/src/organisms/Desktop/ChooseRobotToRunProtocolSlideout/__tests__/ChooseRobotToRunProtocolSlideout.test.tsx +++ b/app/src/organisms/Desktop/ChooseRobotToRunProtocolSlideout/__tests__/ChooseRobotToRunProtocolSlideout.test.tsx @@ -436,9 +436,7 @@ describe('ChooseRobotToRunProtocolSlideout', () => { fireEvent.click(proceedButton) const confirm = screen.getByRole('button', { name: 'Confirm values' }) fireEvent.pointerEnter(confirm) - await waitFor(() => - screen.findByText('Add the required CSV file to continue.') - ) + await screen.findByText('Add the required CSV file to continue.') }) })