From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../browser_telemetry_toolboxtabs_shadereditor.js | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 devtools/client/shared/test/browser_telemetry_toolboxtabs_shadereditor.js (limited to 'devtools/client/shared/test/browser_telemetry_toolboxtabs_shadereditor.js') diff --git a/devtools/client/shared/test/browser_telemetry_toolboxtabs_shadereditor.js b/devtools/client/shared/test/browser_telemetry_toolboxtabs_shadereditor.js new file mode 100644 index 000000000..5cf1eb0a6 --- /dev/null +++ b/devtools/client/shared/test/browser_telemetry_toolboxtabs_shadereditor.js @@ -0,0 +1,37 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +"use strict"; + +// +// Whitelisting this test. +// As part of bug 1077403, the leaking uncaught rejection should be fixed. +// +thisTestLeaksUncaughtRejectionsAndShouldBeFixed( + "Error: Shader Editor is still waiting for a WebGL context to be created."); + +const TEST_URI = "data:text/html;charset=utf-8," + + "

browser_telemetry_toolboxtabs_shadereditor.js

"; + +// Because we need to gather stats for the period of time that a tool has been +// opened we make use of setTimeout() to create tool active times. +const TOOL_DELAY = 200; +const TOOL_PREF = "devtools.shadereditor.enabled"; + +add_task(function* () { + info("Active the sharer editor"); + let originalPref = Services.prefs.getBoolPref(TOOL_PREF); + Services.prefs.setBoolPref(TOOL_PREF, true); + + yield addTab(TEST_URI); + let Telemetry = loadTelemetryAndRecordLogs(); + + yield openAndCloseToolbox(2, TOOL_DELAY, "shadereditor"); + checkTelemetryResults(Telemetry); + + stopRecordingTelemetryLogs(Telemetry); + gBrowser.removeCurrentTab(); + + info("De-activate the sharer editor"); + Services.prefs.setBoolPref(TOOL_PREF, originalPref); +}); -- cgit v1.2.3