playwright/test/assets/error.html

17 lines
166 B
HTML
Raw Normal View History

2019-11-19 05:18:28 +03:00
<script>
console.error('Not a JS error');
2019-11-19 05:18:28 +03:00
a();
function a() {
b();
}
function b() {
c();
}
function c() {
throw new Error('Fancy error!');
}
</script>