head.js (583B)
1 /* Any copyright is dedicated to the Public Domain. 2 * http://creativecommons.org/publicdomain/zero/1.0/ */ 3 4 "use strict"; 5 6 const { LoginTestUtils } = ChromeUtils.importESModule( 7 "resource://testing-common/LoginTestUtils.sys.mjs" 8 ); 9 const { LoginHelper } = ChromeUtils.importESModule( 10 "resource://gre/modules/LoginHelper.sys.mjs" 11 ); 12 13 const TestData = LoginTestUtils.testData; 14 const newPropertyBag = LoginHelper.newPropertyBag; 15 16 /** 17 * All the tests are implemented with add_task, this starts them automatically. 18 */ 19 function run_test() { 20 do_get_profile(); 21 run_next_test(); 22 }