From 03c605fe3cf535f73479563f2545763f3b5e9476 Mon Sep 17 00:00:00 2001 From: Frank Yung-Fong Tang <41213225+FrankYFTang@users.noreply.github.com> Date: Tue, 2 Apr 2019 10:00:52 -0700 Subject: [PATCH] obsoleted test --- .../constructor/options-bad-combinations.js | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 test/intl402/ListFormat/constructor/constructor/options-bad-combinations.js diff --git a/test/intl402/ListFormat/constructor/constructor/options-bad-combinations.js b/test/intl402/ListFormat/constructor/constructor/options-bad-combinations.js deleted file mode 100644 index 01423b86f2..0000000000 --- a/test/intl402/ListFormat/constructor/constructor/options-bad-combinations.js +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright 2018 Igalia, S.L. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/*--- -esid: sec-Intl.ListFormat -description: Checks handling of invalid value for the type option to the ListFormat constructor. -info: | - InitializeListFormat (listFormat, locales, options) - 7. Let type be GetOption(options, "type", "string", « "conjunction", "disjunction", "unit" », "conjunction"). -features: [Intl.ListFormat] ----*/ - -const invalidTypes = [ - "conjunction", - "disjunction", -]; - -for (const type of invalidTypes) { - assert.throws(RangeError, function() { - new Intl.ListFormat([], { style: "narrow", type }); - }, `${type} is an invalid type option value when style is narrow.`); -}