blob: 2cc19d96243620903eeb115397724380e9ec0289 (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE html>
<meta charset=utf-8>
<title>Unhandled rejection following subtest</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(function() {});
Promise.reject(new Error("error outside any setup or test"));
</script>
|