Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(app, shared-data, components): implement base CSV file RTP UI #15410

Merged
merged 13 commits into from
Jun 13, 2024
Prev Previous commit
Next Next commit
fix prettier issue
  • Loading branch information
ncdiehl11 committed Jun 13, 2024
commit 24f99a4557ac129201cf44ae02ace2032a179c58
Original file line number Diff line number Diff line change
Expand Up @@ -228,15 +228,16 @@ describe('ChooseRobotSlideout', () => {

screen.getByText(param.displayName)
if (!('choices' in param)) {
if (param.type === 'bool') {
screen.getByText(param.description)
if (param.type === 'bool') {
screen.getByText(param.description)
}
if (param.type === 'int') {
screen.getByText(`${param.min}-${param.max}`)
}
if (param.type === 'float') {
screen.getByText(`${param.min.toFixed(1)}-${param.max.toFixed(1)}`)
}
}
if (param.type === 'int') {
screen.getByText(`${param.min}-${param.max}`)
}
if (param.type === 'float') {
screen.getByText(`${param.min.toFixed(1)}-${param.max.toFixed(1)}`)
}}
})
})

Expand Down
Loading