puppeteer/test/assets/error.html

17 lines
149 B
HTML

<!DOCTYPE html>
<script>
a();
function a() {
b();
}
function b() {
c();
}
function c() {
throw new Error('Fancy error!');
}
</script>