add forgotten error.html test asset

This commit is contained in:
Andrey Lushnikov 2017-06-16 11:35:03 -07:00
parent 163e14345d
commit 3d183dd996

15
test/assets/error.html Normal file
View File

@ -0,0 +1,15 @@
<script>
a();
function a() {
b();
}
function b() {
c();
}
function c() {
throw new Error('Fancy error!');
}
</script>