* add next option for babel-plugin-transform-react-jsx * address review comments * chore: update test fixtures * Update fixture * Add "columnNumber" to the new React transform * Update windows fixtures * Delete unused output.js * Update windows tests * Fix windows again * fix comments Co-authored-by: Huáng Jùnliàng <jlhwung@gmail.com> Co-authored-by: Nicolò Ribaudo <nicolo.ribaudo@gmail.com> Co-authored-by: Moti Zilberman <motiz88@gmail.com>
33 lines
803 B
JavaScript
33 lines
803 B
JavaScript
var actual = transform(
|
|
`var x = (
|
|
<>
|
|
<div>
|
|
<div key="1" />
|
|
<div key="2" meow="wolf" />
|
|
<div key="3" />
|
|
<div {...props} key="4" />
|
|
</div>
|
|
</>
|
|
);`,
|
|
Object.assign({}, opts, { filename: '/fake/path/mock.js' })
|
|
).code;
|
|
|
|
var expected =
|
|
`import { createElement as _createElement } from "react";
|
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
var _jsxFileName = "/fake/path/mock.js";
|
|
|
|
var x = _jsx(_Fragment, {
|
|
children: _jsxs("div", {
|
|
children: [_jsx("div", {}, "1"), _jsx("div", {
|
|
meow: "wolf"
|
|
}, "2"), _jsx("div", {}, "3"), _createElement("div", { ...props,
|
|
key: "4"
|
|
})]
|
|
})
|
|
});`;
|
|
|
|
expect(actual).toBe(expected);
|