playwright/tests/assets/error.html

18 lines
208 B
HTML
Raw Normal View History

<!DOCTYPE html> <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!');
2019-11-19 05:18:28 +03:00
}
//# sourceURL=myscript.js
2019-11-19 05:18:28 +03:00
</script>