michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: Components.utils.import('resource://tps/tps.jsm'); michael@0: michael@0: var setupModule = function(module) { michael@0: module.controller = mozmill.getBrowserController(); michael@0: assert.ok(true, "SetupModule passes"); michael@0: } michael@0: michael@0: var setupTest = function(module) { michael@0: assert.ok(true, "SetupTest passes"); michael@0: } michael@0: michael@0: var testTestStep = function() { michael@0: assert.ok(true, "test Passes"); michael@0: controller.open("http://www.mozilla.org"); michael@0: michael@0: TPS.Login(); michael@0: TPS.Sync(ACTIONS.ACTION_SYNC_WIPE_CLIENT); michael@0: } michael@0: michael@0: var teardownTest = function () { michael@0: assert.ok(true, "teardownTest passes"); michael@0: } michael@0: michael@0: var teardownModule = function() { michael@0: assert.ok(true, "teardownModule passes"); michael@0: }