fix: codespell

This commit is contained in:
Kevin Nadro
2025-02-07 16:10:39 -06:00
parent 83ee6511be
commit bcd52a43ca
2 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ export class CmdBarFixture {
await continueButton.click()
}
// Added data-testid to the commad bar buttons
// Added data-testid to the command bar buttons
// command-bar-submit is the button for the final step to submit
// the command bar flow aka the checkmark button.
submit = async () => {

View File

@ -53,7 +53,7 @@ export function useCalculateKclExpression({
})
const [valueNode, setValueNode] = useState<Expr | null>(null)
// Gotcha: If we do not attempt to parse numeric literals instantly it means that there is an async action to verify
// the value is good. This means all E2E tests have a race condition on when they can hit "next" in the commad bar.
// the value is good. This means all E2E tests have a race condition on when they can hit "next" in the command bar.
// Most scenarios automatically pass a numeric literal. We can try to parse that first, otherwise make it go through the slow
// async method.
// If we pass in numeric literals, we should instantly parse them, they have nothing to do with application memory