Bug 1686495 [wpt PR 27132] - Update wpt metadata, a=testonly
[gecko.git] / testing / modules / Sinon.jsm
blobfdf2fc83338beb0cf842f1f7cae6745cb2a6ff2c
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 "use strict";
7 var EXPORTED_SYMBOLS = ["sinon"];
9 var { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
11 // ================================================
12 // Load mocking/stubbing library sinon
13 // docs: http://sinonjs.org/releases/v7.2.7/
14 const {
15   clearInterval,
16   clearTimeout,
17   setInterval,
18   setIntervalWithTarget,
19   setTimeout,
20   setTimeoutWithTarget,
21 } = ChromeUtils.import("resource://gre/modules/Timer.jsm");
22 // eslint-disable-next-line no-unused-vars
23 const global = {
24   clearInterval,
25   clearTimeout,
26   setInterval,
27   setIntervalWithTarget,
28   setTimeout,
29   setTimeoutWithTarget,
31 Services.scriptloader.loadSubScript(
32   "resource://testing-common/sinon-7.2.7.js",
33   this
35 const sinon = global.sinon;
36 // ================================================