aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.5/packages/addon-kit/tests/test-timers.js
blob: 90b26bfc138b7f9f0e1a209caed46d2b142ad989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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/. */
const timers = require("timers");

exports.testTimeout = function (test) {
  test.waitUntilDone();
  timers.setTimeout(function () {
    test.pass("timers.setTimeout works");
    test.done();
  }, 0);
}