From 0213936e95216d494f4b6c7f07bfa049b61dbe2b Mon Sep 17 00:00:00 2001 From: Frank Yung-Fong Tang <41213225+FrankYFTang@users.noreply.github.com> Date: Thu, 26 Sep 2019 11:23:24 -0700 Subject: [PATCH] remove test for abandon ecma402/pull/345 (#2368) https://github.com/tc39/ecma402/pull/345 --- ...ructor-options-throwing-getters-quarter.js | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 test/intl402/DateTimeFormat/constructor-options-throwing-getters-quarter.js diff --git a/test/intl402/DateTimeFormat/constructor-options-throwing-getters-quarter.js b/test/intl402/DateTimeFormat/constructor-options-throwing-getters-quarter.js deleted file mode 100644 index e6ee7be9cc..0000000000 --- a/test/intl402/DateTimeFormat/constructor-options-throwing-getters-quarter.js +++ /dev/null @@ -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`); -}