playwright/test/assets/error.html
2020-01-03 10:07:49 -08:00

17 lines
166 B
HTML

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