Because there are some styles on <body> in app/index.html that aren’t (and can’t be) present in tests/index.html we have a mismatch between how the app looks in acceptance tests vs. when it’s running for real:

We could fix this by moving the containing styles into app/template/application.hbs, i.e.:
<div class="font-sans antialiased h-screen flex">
{{outlet}}
</div>
This implies also updating the starter HTML and various intermediate steps.
If this change is desirable, let me know and I’ll throw together a PR.
Because there are some styles on
<body>inapp/index.htmlthat aren’t (and can’t be) present intests/index.htmlwe have a mismatch between how the app looks in acceptance tests vs. when it’s running for real:We could fix this by moving the containing styles into
app/template/application.hbs, i.e.:This implies also updating the starter HTML and various intermediate steps.
If this change is desirable, let me know and I’ll throw together a PR.