mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
add forgotten error.html test asset
This commit is contained in:
parent
163e14345d
commit
3d183dd996
15
test/assets/error.html
Normal file
15
test/assets/error.html
Normal file
@ -0,0 +1,15 @@
|
||||
<script>
|
||||
a();
|
||||
|
||||
function a() {
|
||||
b();
|
||||
}
|
||||
|
||||
function b() {
|
||||
c();
|
||||
}
|
||||
|
||||
function c() {
|
||||
throw new Error('Fancy error!');
|
||||
}
|
||||
</script>
|
Loading…
Reference in New Issue
Block a user