rsnext/test/integration/scroll-back-restoration/pages/another.js
Jan Potoms 2f50f1f8c9
Stabilize more tests (#15470)
jest retries seem to be masking test failures, like the `auto-export` one (and maybe others). I turned it off for now. The `auto-export` test fails when retries are turned off.
the output of this test failure was a bit unhelpful so I also improved it.
Many tests have anonymous page functions.
2020-07-26 04:57:06 +00:00

12 lines
211 B
JavaScript

import Link from 'next/link'
export default function Page() {
return (
<>
<p id="another">hi from another</p>
<Link href="/">
<a id="to-index">to index</a>
</Link>
</>
)
}