mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Add test for current jsxDecorator behavior with undefined/null values
This commit is contained in:
parent
8cba283c7b
commit
4b7835a097
@ -30,6 +30,20 @@ describe('renderJsx', () => {
|
||||
</div>
|
||||
`);
|
||||
});
|
||||
it('undefined values', () => {
|
||||
expect(renderJsx(<div className={undefined}>hello</div>, {})).toMatchInlineSnapshot(`
|
||||
<div className={undefined}>
|
||||
hello
|
||||
</div>
|
||||
`);
|
||||
});
|
||||
it('null values', () => {
|
||||
expect(renderJsx(<div className={null}>hello</div>, {})).toMatchInlineSnapshot(`
|
||||
<div className={null}>
|
||||
hello
|
||||
</div>
|
||||
`);
|
||||
});
|
||||
it('large objects', () => {
|
||||
const obj: Record<string, string> = {};
|
||||
range(20).forEach((i) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user