1 2 3 4 5 6 7 8 9 10 11 12
export const meta = { name: 'function-stack-error', description: 'Exercise stack traces for default function errors', }; function fail() { throw new Error('boom from function'); } export default async function workflow() { fail(); }