Newlines in fixtures (#6044)

* write newlines for fixtures

* rerun fixtures
This commit is contained in:
Henry Zhu
2017-08-02 15:35:29 -04:00
committed by GitHub
parent 829c75a866
commit 0f823beeb1
547 changed files with 538 additions and 579 deletions

View File

@@ -1,3 +1,3 @@
babelHelpers.jsx("div", {
children: "foo"
}, void 0, "bar");
}, void 0, "bar");

View File

@@ -1,3 +1,3 @@
babelHelpers.jsx(Baz, {
foo: "bar"
});
});

View File

@@ -1 +1 @@
babelHelpers.jsx(Baz, {});
babelHelpers.jsx(Baz, {});

View File

@@ -4,4 +4,4 @@ var TestComponent = React.createClass({
className: this.props.someProp
});
}
});
});

View File

@@ -1,3 +1,3 @@
babelHelpers.jsx("foo", {
bar: "foo"
});
});

View File

@@ -1 +1 @@
babelHelpers.jsx("foo", {});
babelHelpers.jsx("foo", {});

View File

@@ -1,3 +1,3 @@
babelHelpers.jsx(Foo, {
"data-value": "bar"
}, "foo" + "baz");
}, "foo" + "baz");

View File

@@ -1,3 +1,3 @@
babelHelpers.jsx(Foo, {
"data-value": "bar"
}, "foo");
}, "foo");

View File

@@ -6,4 +6,4 @@ Object.defineProperty(exports, "__esModule", {
var _reactBootstrap = require("react-bootstrap");
exports.default = CustomModal = () => babelHelpers.jsx(_reactBootstrap.Modal.Header, {}, void 0, "foobar");
exports.default = CustomModal = () => babelHelpers.jsx(_reactBootstrap.Modal.Header, {}, void 0, "foobar");

View File

@@ -1 +1 @@
babelHelpers.jsx(Baz, {}, void 0);
babelHelpers.jsx(Baz, {}, void 0);

View File

@@ -1,3 +1,3 @@
babelHelpers.jsx(Foo, {
className: "foo"
}, void 0, bar, babelHelpers.jsx(Baz, {}, "baz"));
}, void 0, bar, babelHelpers.jsx(Baz, {}, "baz"));

View File

@@ -1,3 +1,3 @@
babelHelpers.jsx("div", {
className: "foo"
}, void 0, bar);
}, void 0, bar);

View File

@@ -1,3 +1,3 @@
babelHelpers.jsx("div", {
className: "foo"
}, void 0, bar, babelHelpers.jsx(Baz, {}, "baz"));
}, void 0, bar, babelHelpers.jsx(Baz, {}, "baz"));

View File

@@ -1,3 +1,3 @@
React.createElement(Foo, {
ref: "bar"
});
});

View File

@@ -1 +1 @@
babelHelpers.jsx(Baz, {});
babelHelpers.jsx(Baz, {});

View File

@@ -1 +1 @@
babelHelpers.jsx("foo", {});
babelHelpers.jsx("foo", {});

View File

@@ -1,3 +1,3 @@
babelHelpers.jsx(Foo, {
bar: true
});
});