remove test for abandon ecma402/pull/345 (#2368)

https://github.com/tc39/ecma402/pull/345
This commit is contained in:
Frank Yung-Fong Tang 2019-09-26 11:23:24 -07:00 committed by Leo Balter
parent ce2dfd49d1
commit 0213936e95
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
// Copyright 2019 Google Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-initializedatetimeformat
description: Checks the propagation of exceptions from the options for the DateTimeFormat constructor.
features: [Intl.DateTimeFormat-quarter]
---*/
function CustomError() {}
const options = [
"quarter",
];
for (const option of options) {
assert.throws(CustomError, () => {
new Intl.DateTimeFormat("en", {
get [option]() {
throw new CustomError();
}
});
}, `Exception from ${option} getter should be propagated`);
}