-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LineHeightControl: Migrate internals to
NumberControl
(Part 2: Beha…
…vior) (#37164) * Maintain previous behavior via state reducer * Add tests * Add comment about strange reducer behavior * Fix tests
- Loading branch information
Showing
3 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
packages/block-editor/src/components/line-height-control/test/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/** | ||
* External dependencies | ||
*/ | ||
import { fireEvent, render, screen } from '@testing-library/react'; | ||
|
||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { useState } from '@wordpress/element'; | ||
import { UP, DOWN } from '@wordpress/keycodes'; | ||
|
||
/** | ||
* Internal dependencies | ||
*/ | ||
import LineHeightControl from '../'; | ||
import { BASE_DEFAULT_VALUE, STEP } from '../utils'; | ||
|
||
const ControlledLineHeightControl = () => { | ||
const [ value, setValue ] = useState(); | ||
return ( | ||
<LineHeightControl | ||
value={ value } | ||
onChange={ setValue } | ||
__nextHasNoMarginBottom={ true } | ||
/> | ||
); | ||
}; | ||
|
||
describe( 'LineHeightControl', () => { | ||
it( 'should immediately step up from the default value if up-arrowed from an unset state', () => { | ||
render( <ControlledLineHeightControl /> ); | ||
const input = screen.getByRole( 'spinbutton' ); | ||
input.focus(); | ||
fireEvent.keyDown( input, { keyCode: UP } ); | ||
expect( input ).toHaveValue( BASE_DEFAULT_VALUE + STEP ); | ||
} ); | ||
|
||
it( 'should immediately step down from the default value if down-arrowed from an unset state', () => { | ||
render( <ControlledLineHeightControl /> ); | ||
const input = screen.getByRole( 'spinbutton' ); | ||
input.focus(); | ||
fireEvent.keyDown( input, { keyCode: DOWN } ); | ||
expect( input ).toHaveValue( BASE_DEFAULT_VALUE - STEP ); | ||
} ); | ||
|
||
it( 'should immediately step up from the default value if spin button up was clicked from an unset state', () => { | ||
render( <ControlledLineHeightControl /> ); | ||
const input = screen.getByRole( 'spinbutton' ); | ||
input.focus(); | ||
fireEvent.change( input, { target: { value: 0.1 } } ); // simulates click on spin button up | ||
expect( input ).toHaveValue( BASE_DEFAULT_VALUE + STEP ); | ||
} ); | ||
|
||
it( 'should immediately step down from the default value if spin button down was clicked from an unset state', () => { | ||
render( <ControlledLineHeightControl /> ); | ||
const input = screen.getByRole( 'spinbutton' ); | ||
input.focus(); | ||
fireEvent.change( input, { target: { value: 0 } } ); // simulates click on spin button down | ||
expect( input ).toHaveValue( BASE_DEFAULT_VALUE - STEP ); | ||
} ); | ||
} ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters