summaryrefslogtreecommitdiffstats
path: root/addon-sdk/source/test/addons/standard-id
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-02-10 02:51:36 -0500
committerMatt A. Tobin <email@mattatobin.com>2018-02-10 02:51:36 -0500
commit37d5300335d81cecbecc99812747a657588c63eb (patch)
tree765efa3b6a56bb715d9813a8697473e120436278 /addon-sdk/source/test/addons/standard-id
parentb2bdac20c02b12f2057b9ef70b0a946113a00e00 (diff)
parent4fb11cd5966461bccc3ed1599b808237be6b0de9 (diff)
downloadUXP-37d5300335d81cecbecc99812747a657588c63eb.tar
UXP-37d5300335d81cecbecc99812747a657588c63eb.tar.gz
UXP-37d5300335d81cecbecc99812747a657588c63eb.tar.lz
UXP-37d5300335d81cecbecc99812747a657588c63eb.tar.xz
UXP-37d5300335d81cecbecc99812747a657588c63eb.zip
Merge branch 'ext-work'
Diffstat (limited to 'addon-sdk/source/test/addons/standard-id')
-rw-r--r--addon-sdk/source/test/addons/standard-id/lib/main.js30
-rw-r--r--addon-sdk/source/test/addons/standard-id/package.json13
2 files changed, 0 insertions, 43 deletions
diff --git a/addon-sdk/source/test/addons/standard-id/lib/main.js b/addon-sdk/source/test/addons/standard-id/lib/main.js
deleted file mode 100644
index bd1b5f9ce..000000000
--- a/addon-sdk/source/test/addons/standard-id/lib/main.js
+++ /dev/null
@@ -1,30 +0,0 @@
-/* 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/. */
-
-'use strict';
-
-const { id, preferencesBranch } = require('sdk/self');
-const simple = require('sdk/simple-prefs');
-const service = require('sdk/preferences/service');
-const { getAddonByID } = require('sdk/addon/manager');
-
-exports.testStandardID = function(assert) {
- assert.equal(id, 'standard-id@jetpack', 'standard ID is standard');
-
- assert.equal(simple.prefs.test13, 26, 'test13 is 26');
-
- simple.prefs.test14 = '15';
- assert.equal(service.get('extensions.standard-id@jetpack.test14'), '15', 'test14 is 15');
- assert.equal(service.get('extensions.standard-id@jetpack.test14'), simple.prefs.test14, 'simple test14 also 15');
-}
-
-// from `/test/test-self.js`, adapted to `sdk/test/assert` API
-exports.testSelfID = function*(assert) {
- assert.equal(typeof(id), 'string', 'self.id is a string');
- assert.ok(id.length > 0, 'self.id not empty');
- let addon = yield getAddonByID(id);
- assert.ok(addon, 'found addon with self.id');
-}
-
-require('sdk/test/runner').runTestsFromModule(module);
diff --git a/addon-sdk/source/test/addons/standard-id/package.json b/addon-sdk/source/test/addons/standard-id/package.json
deleted file mode 100644
index 7a8f7a77c..000000000
--- a/addon-sdk/source/test/addons/standard-id/package.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "id": "standard-id@jetpack",
- "fullName": "standard ID test",
- "author": "Tomislav Jovanovic",
- "preferences": [{
- "name": "test13",
- "type": "integer",
- "title": "test13",
- "value": 26
- }],
- "main": "./lib/main.js",
- "version": "0.0.1"
-}