fix(explore): fix y-axis lower bound 0 value (#15091)

This commit is contained in:
Yaozong Liu
2021-06-13 11:24:39 +08:00
committed by GitHub
parent 8e6a5a6f52
commit 856a2bd5ed
2 changed files with 11 additions and 2 deletions

View File

@@ -51,3 +51,12 @@ test('calls onChange with correct values', async () => {
expect(defaultProps.onChange).toHaveBeenLastCalledWith([1, 2]),
);
});
test('receives 0 value', async () => {
render(<BoundsControl {...defaultProps} />);
const minInput = screen.getAllByRole('spinbutton')[0];
userEvent.type(minInput, '0');
await waitFor(() =>
expect(defaultProps.onChange).toHaveBeenLastCalledWith([0, null]),
);
});