summaryrefslogtreecommitdiffstats
path: root/dom/tethering/tests/marionette/test_wifi_tethering_enabled.js
diff options
context:
space:
mode:
Diffstat (limited to 'dom/tethering/tests/marionette/test_wifi_tethering_enabled.js')
-rw-r--r--dom/tethering/tests/marionette/test_wifi_tethering_enabled.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/dom/tethering/tests/marionette/test_wifi_tethering_enabled.js b/dom/tethering/tests/marionette/test_wifi_tethering_enabled.js
new file mode 100644
index 000000000..936219ec5
--- /dev/null
+++ b/dom/tethering/tests/marionette/test_wifi_tethering_enabled.js
@@ -0,0 +1,12 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+MARIONETTE_TIMEOUT = 60000;
+MARIONETTE_HEAD_JS = 'head.js';
+
+gTestSuite.startTetheringTest(function() {
+ return gTestSuite.ensureWifiEnabled(false)
+ .then(() => gTestSuite.setWifiTetheringEnabled(true))
+ .then(() => gTestSuite.setWifiTetheringEnabled(false));
+});