Update expectations for JSX indentation in JSXAttribute space

* test/manual/indent/js-jsx.js: Align expectations for dangling
closing constructs with other places in the tests.
This commit is contained in:
Jackson Ray Hamilton 2019-03-23 12:33:20 -07:00
parent 8dae74236d
commit 2bedd23358
No known key found for this signature in database
GPG key ID: B4771664B476B290

View file

@ -37,7 +37,7 @@ return (
React.render(
<input
/>,
/>,
{
a: 1
}
@ -242,12 +242,18 @@ export default ({ stars }) => (
// JS expressions should not break indentation
// (https://github.com/mooz/js2-mode/issues/462).
//
// In the referenced issue, the user actually wanted indentation which
// was simply different than Emacs SGML attribute indentation.
// Nevertheless, his issue highlighted our inability to properly
// indent code with JSX inside JSXExpressionContainers inside JSX.
return (
<Router>
<Bar>
<Route exact path="/foo" render={() => (
<div>nothing</div>
)} />
<Route exact path="/foo"
render={() => (
<div>nothing</div>
)} />
<Route exact path="/bar" />
</Bar>
</Router>