rsnext/test/integration/build-indicator/pages/index.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

14 lines
235 B
JavaScript

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