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

fix(app): calcheck: content fixups #5989

Merged
merged 3 commits into from
Jun 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/src/components/CheckCalibration/BadCalibration.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ const SUMMARY =
const TO_TROUBLESHOOT = 'To troubleshoot this issue:'
const TIP_RACK_CENTERED = 'Confirm your tip rack is centered in its slot'
const USE_OPENTRONS_TIPS = 'Confirm you are using Opentrons brand tips'
const PERFORM_CALIBRATION = 'If you continue to see this error, view'
const PERFORM_CALIBRATION =
'If you continue to see this error, please perform a deck calibration and then try again. View'
const THIS_ARTICLE = 'this article'
const LEARN_MORE = 'to troubleshoot'
const BAD_ROBOT_CALIBRATION_CHECK_BUTTON_TEXT = 'Drop tip in trash and exit'
Expand Down
3 changes: 2 additions & 1 deletion app/src/components/RobotSettings/CheckCalibrationControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ export type CheckCalibrationControlProps = {|

const CHECK = 'Check'
const CHECK_ROBOT_CAL = 'Check robot calibration'
const CHECK_ROBOT_CAL_DESCRIPTION = "Check the robot's calibration state"
const CHECK_ROBOT_CAL_DESCRIPTION =
"Check the robot's calibration status and diagnose common pipette positioning problems."
const COULD_NOT_START = 'Could not start Robot Calibration Check'
const PLEASE_TRY_AGAIN =
'Please try again or contact support if you continue to experience issues'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe('CheckCalibrationControl', () => {
const titledButton = wrapper.find(TitledButton)

expect(titledButton.prop('title')).toBe('Check robot calibration')
expect(titledButton.html()).toMatch(/check the robot's calibration state/i)
expect(titledButton.html()).toMatch(/check the robot's calibration status/i)
expect(titledButton.prop('buttonProps')).toMatchObject({
children: 'Check',
disabled: false,
Expand Down