commit 93531a24f87bba968d62ffd6ec092ecda46235cd
parent 585b43268ba2e04303e84ce446adcf7a42867b78
Author: Jared Hirsch <ohai@6a68.net>
Date: Thu, 16 Oct 2025 17:24:03 +0000
Bug 1994086 - Temporarily disable some profiles tests on windows r=profiles-reviewers,mossop
Differential Revision: https://phabricator.services.mozilla.com/D268470
Diffstat:
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/browser/components/profiles/tests/browser/browser.toml b/browser/components/profiles/tests/browser/browser.toml
@@ -46,8 +46,10 @@ fail-if = ["a11y_checks"] # Bug 1955503
["browser_refresh_button.js"]
["browser_test_current_theme_from_amo.js"]
+skip-if = ["os == 'win'"] # Bug 1994086
["browser_test_last_tab.js"]
+skip-if = ["os == 'win'"] # Bug 1994086
["browser_test_nimbus_feature.js"]
diff --git a/browser/components/profiles/tests/browser/browser_create_profile_page_test.js b/browser/components/profiles/tests/browser/browser_create_profile_page_test.js
@@ -410,6 +410,10 @@ add_task(async function test_new_profile_displayed_closed_telemetry() {
ok(true, "Skipping because !AppConstants.MOZ_SELECTABLE_PROFILES");
return;
}
+ if (AppConstants.platform === "win") {
+ ok(true, "Skipping until we fix bug 1994086");
+ return;
+ }
await setup();
is(
null,
@@ -474,6 +478,10 @@ add_task(async function test_new_profile_delete_telemetry() {
ok(true, "Skipping because !AppConstants.MOZ_SELECTABLE_PROFILES");
return;
}
+ if (AppConstants.platform === "win") {
+ ok(true, "Skipping until we fix bug 1994086");
+ return;
+ }
await setup();
is(
null,