summaryrefslogtreecommitdiffstats
path: root/browser/components/translations/tests/browser/browser_translations_full_page_panel_firstrun.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/translations/tests/browser/browser_translations_full_page_panel_firstrun.js')
-rw-r--r--browser/components/translations/tests/browser/browser_translations_full_page_panel_firstrun.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/browser/components/translations/tests/browser/browser_translations_full_page_panel_firstrun.js b/browser/components/translations/tests/browser/browser_translations_full_page_panel_firstrun.js
new file mode 100644
index 0000000000..ef807b9ac6
--- /dev/null
+++ b/browser/components/translations/tests/browser/browser_translations_full_page_panel_firstrun.js
@@ -0,0 +1,33 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+/**
+ * Tests that the first run message is displayed.
+ */
+add_task(async function test_translations_panel_firstrun() {
+ const { cleanup } = await loadTestPage({
+ page: SPANISH_PAGE_URL,
+ languagePairs: LANGUAGE_PAIRS,
+ prefs: [["browser.translations.panelShown", false]],
+ });
+
+ await FullPageTranslationsTestUtils.openPanel({
+ onOpenPanel: FullPageTranslationsTestUtils.assertPanelViewFirstShow,
+ });
+
+ await FullPageTranslationsTestUtils.clickCancelButton();
+
+ await navigate("Load a different page on the same site", {
+ url: SPANISH_PAGE_URL_2,
+ });
+
+ await FullPageTranslationsTestUtils.openPanel({
+ onOpenPanel: FullPageTranslationsTestUtils.assertPanelViewDefault,
+ });
+
+ await FullPageTranslationsTestUtils.clickCancelButton();
+
+ await cleanup();
+});