next.js/test/e2e/app-dir/actions/app/catching-error/actions.ts
actions.ts10 lines144 B
'use server'

export async function getServerData() {
  return Math.random()
}

export async function badAction() {
  throw new Error('oops')
}
Quest for Codev2.0.0
/
SIGN IN