diff --git a/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/with-this-member-expression/input.jsx b/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/with-this-member-expression/input.jsx index 7db8b3bc29886..5dd813a03d904 100644 --- a/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/with-this-member-expression/input.jsx +++ b/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/with-this-member-expression/input.jsx @@ -1,3 +1,3 @@ -() => { - -} \ No newline at end of file +() => ; +() => ; +() => ; diff --git a/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/with-this-member-expression/output.js b/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/with-this-member-expression/output.js index 9cf1a37b4692f..33a2b9b78a8fc 100644 --- a/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/with-this-member-expression/output.js +++ b/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/with-this-member-expression/output.js @@ -1,4 +1,10 @@ var _this = this; (function() { - <_this.foo>; -}); \ No newline at end of file + return <_this.foo>; +}); +(function() { + return <_this.foo.bar>; +}); +(function() { + return <_this.foo.bar.qux />; +});