playwright/tests/assets/error.html
2021-07-01 14:31:20 -07:00

18 lines
192 B
HTML

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