blob: 6ca7dc48c4340fe992f2e016a620006a6e878774 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* 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);
|