summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/src/har/test
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/netmonitor/src/har/test')
-rw-r--r--devtools/client/netmonitor/src/har/test/browser.toml5
-rw-r--r--devtools/client/netmonitor/src/har/test/browser_net_har_copy_all_as_har.js3
-rw-r--r--devtools/client/netmonitor/src/har/test/html_har_post-data-test-page.html2
3 files changed, 5 insertions, 5 deletions
diff --git a/devtools/client/netmonitor/src/har/test/browser.toml b/devtools/client/netmonitor/src/har/test/browser.toml
index 7a11328f5a..6964b542dd 100644
--- a/devtools/client/netmonitor/src/har/test/browser.toml
+++ b/devtools/client/netmonitor/src/har/test/browser.toml
@@ -21,8 +21,9 @@ support-files = [
["browser_net_har_copy_all_as_har.js"]
skip-if = [
- "!debug && os == 'mac'", #Bug 1622925
- "!debug && os == 'linux'", #Bug 1622925
+ "apple_catalina && !debug", #Bug 1622925
+ "apple_silicon && !debug", #Bug 1622925
+ "os == 'linux' && os_version == '18.04' && !debug", #Bug 1622925
"win11_2009", # Bug 1797751
]
diff --git a/devtools/client/netmonitor/src/har/test/browser_net_har_copy_all_as_har.js b/devtools/client/netmonitor/src/har/test/browser_net_har_copy_all_as_har.js
index bcbb4bef2a..2faaf01b73 100644
--- a/devtools/client/netmonitor/src/har/test/browser_net_har_copy_all_as_har.js
+++ b/devtools/client/netmonitor/src/har/test/browser_net_har_copy_all_as_har.js
@@ -111,7 +111,7 @@ async function testManyReloads({ tab, monitor, toolbox }) {
assertNavigationRequestEntry(entry);
}
-async function testClearedRequests({ tab, monitor, toolbox }) {
+async function testClearedRequests({ tab, monitor }) {
info("Navigate to an empty page");
const topDocumentURL =
"https://example.org/document-builder.sjs?html=empty-document";
@@ -196,7 +196,6 @@ function assertNavigationRequestEntry(entry) {
* Reload the page and copy all as HAR.
*/
async function reloadAndCopyAllAsHar({
- tab,
monitor,
toolbox,
reloadTwice = false,
diff --git a/devtools/client/netmonitor/src/har/test/html_har_post-data-test-page.html b/devtools/client/netmonitor/src/har/test/html_har_post-data-test-page.html
index 5e42c6139d..9be2e3c16a 100644
--- a/devtools/client/netmonitor/src/har/test/html_har_post-data-test-page.html
+++ b/devtools/client/netmonitor/src/har/test/html_har_post-data-test-page.html
@@ -44,7 +44,7 @@
post(url, data);
}
- function executeTest3(size) {
+ function executeTest3() {
const url = "html_har_post-data-test-page.html";
get(url);
}