summaryrefslogtreecommitdiffstats
path: root/addon-sdk/source/test/addons/e10s-content/lib/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'addon-sdk/source/test/addons/e10s-content/lib/main.js')
-rw-r--r--addon-sdk/source/test/addons/e10s-content/lib/main.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/addon-sdk/source/test/addons/e10s-content/lib/main.js b/addon-sdk/source/test/addons/e10s-content/lib/main.js
deleted file mode 100644
index 6ca7dc48c..000000000
--- a/addon-sdk/source/test/addons/e10s-content/lib/main.js
+++ /dev/null
@@ -1,22 +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 { merge } = require('sdk/util/object');
-const { version } = require('sdk/system');
-
-const SKIPPING_TESTS = {
- "test skip": (assert) => assert.pass("nothing to test here")
-};
-
-merge(module.exports, require('./test-content-script'));
-merge(module.exports, require('./test-content-worker'));
-merge(module.exports, require('./test-page-worker'));
-
-// run e10s tests only on builds from trunk, fx-team, Nightly..
-if (!version.endsWith('a1')) {
- module.exports = SKIPPING_TESTS;
-}
-
-require('sdk/test/runner').runTestsFromModule(module);