Skip to content

Commit

Permalink
refactor(monorepo): clean up failing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhuff committed Dec 3, 2024
1 parent 631821d commit 13f8c0f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
**/CHANGELOG.md
!api/release-notes.md
!app-shell/build/release-notes.md
**/.yarn-cache/**

# components library
storybook-static
Expand Down
2 changes: 1 addition & 1 deletion app-shell/src/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.')
})
})

Expand Down

0 comments on commit 13f8c0f

Please sign in to comment.