puppeteer/test/assets/error.html
2017-06-16 11:35:03 -07:00

16 lines
133 B
HTML

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