playwright/test/assets/error.html
2019-11-19 10:58:15 -08:00

16 lines
133 B
HTML

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