Sign in
webkit
/
WebKit
/
36168652e4948b4e847a9c1caf1fabcf1810968f
/
.
/
JSTests
/
stress
/
import-reject-with-exception.js
blob: 8a5381a6bf38a79a6fe671afd0c6e1f6058c56aa [
file
] [
log
] [
blame
]
var
abort
=
$vm
.
abort
;
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
abort
();
}
let x
=
{
get
toString
()
{
throw
new
Error
(
'bad'
);
}
};
import
(
x
).
then
(
abort
,
function
(
error
)
{
shouldBe
(
String
(
error
),
`
Error
:
bad
`);
});