summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/pending-beacon/pending_get_beacon-send.tentative.https.window.js
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/pending-beacon/pending_get_beacon-send.tentative.https.window.js')
-rw-r--r--testing/web-platform/tests/pending-beacon/pending_get_beacon-send.tentative.https.window.js38
1 files changed, 0 insertions, 38 deletions
diff --git a/testing/web-platform/tests/pending-beacon/pending_get_beacon-send.tentative.https.window.js b/testing/web-platform/tests/pending-beacon/pending_get_beacon-send.tentative.https.window.js
deleted file mode 100644
index 8c6e826af5..0000000000
--- a/testing/web-platform/tests/pending-beacon/pending_get_beacon-send.tentative.https.window.js
+++ /dev/null
@@ -1,38 +0,0 @@
-// META: script=/common/utils.js
-// META: script=./resources/pending_beacon-helper.js
-
-'use strict';
-
-const baseUrl = `${location.protocol}//${location.host}`;
-
-parallelPromiseTest(async t => {
- const uuid = token();
- const url = generateSetBeaconURL(uuid);
-
- let beacon = new PendingGetBeacon('/');
-
- beacon.setURL(url);
- assert_equals(beacon.url, url);
- beacon.sendNow();
-
- await expectBeacon(uuid, {count: 1});
-}, 'PendingGetBeacon is sent to the updated URL');
-
-parallelPromiseTest(async t => {
- const uuid = token();
- const url = generateSetBeaconURL(uuid);
-
- let beacon = new PendingGetBeacon('/0');
-
- for (let i = 0; i < 10; i++) {
- const transientUrl = `/${i}`;
- beacon.setURL(transientUrl);
- assert_equals(beacon.url, transientUrl);
- }
- beacon.setURL(url);
- assert_equals(beacon.url, url);
-
- beacon.sendNow();
-
- await expectBeacon(uuid, {count: 1});
-}, 'PendingGetBeacon is sent to the last updated URL');