Add test for current jsxDecorator behavior with undefined/null values

This commit is contained in:
Blaine Bublitz 2020-09-02 17:32:04 -07:00
parent 8cba283c7b
commit 4b7835a097

View File

@ -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) => {