Skip to content

Commit

Permalink
fix Sudoku.test.tsx 2
Browse files Browse the repository at this point in the history
  • Loading branch information
icecream17 authored Feb 26, 2024
1 parent 1c79987 commit 8656498
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Elems/MainElems/Sudoku.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ test("Clearing all candidates of a cell", () => {
fireEvent.blur(buttonCell)
expect(buttonCell).toHaveTextContent('7')

// Both Shift and Alt key work to delete all candidates
// Both Shift and Control key work to delete all candidates
userEvent.click(buttonCell)
userEvent.keyboard('{Alt>}{Backspace}{/Alt}123')
userEvent.keyboard('{Control>}{Backspace}{/Control}123')
fireEvent.blur(buttonCell)
expect(buttonCell).toHaveTextContent('123')

Expand Down

0 comments on commit 8656498

Please sign in to comment.