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`);
});