next.js/test/e2e/basepath/pages/error-route.js
error-route.js9 lines188 B
export async function getServerSideProps() {
  // We will use this route to simulate a route change errors
  throw new Error('KABOOM!')
}

export default function Page() {
  return null
}
Quest for Codev2.0.0
/
SIGN IN