diff options
author | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2021-09-07 11:16:33 +0000 |
---|---|---|
committer | cybai <cyb.ai.815@gmail.com> | 2022-01-17 16:30:29 +0900 |
commit | 58e8ee674b032274959b4461fd46ceda8f709e96 (patch) | |
tree | 4953c044dba6b52224d5144747af1bc3773a7ebc /tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/json-module/non-object.tentative.any.js | |
parent | 35e95f55a1b9e488d1c796c8fb39d764d090d660 (diff) | |
download | servo-58e8ee674b032274959b4461fd46ceda8f709e96.tar.gz servo-58e8ee674b032274959b4461fd46ceda8f709e96.zip |
Update web-platform-tests to revision b'468d01bbd84da2babf265c6af46947be68713440'
Diffstat (limited to 'tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/json-module/non-object.tentative.any.js')
-rw-r--r-- | tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/json-module/non-object.tentative.any.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/json-module/non-object.tentative.any.js b/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/json-module/non-object.tentative.any.js deleted file mode 100644 index 6d507177e1e..00000000000 --- a/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/json-module/non-object.tentative.any.js +++ /dev/null @@ -1,14 +0,0 @@ -// META: global=window,worker - -for (const value of [null, true, false, "string"]) { - promise_test(async t => { - const result = await import(`./${value}.json`, { assert: { type: "json" } }); - assert_equals(result.default, value); - }, `Non-object: ${value}`); -} - -promise_test(async t => { - const result = await import("./array.json", { assert: { type: "json" } }); - assert_array_equals(result.default, ["en", "try"]); -}, "Non-object: array"); - |