Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/remote/test/puppeteer/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 755 B image not shown  

Quelle  .mocharc.cjs   Sprache: unbekannt

 
/**
 * @license
 * Copyright 2020 Google Inc.
 * SPDX-License-Identifier: Apache-2.0
 */

let timeout = process.platform === 'win32' ? 20_000 : 10_000;
if (!!process.env.DEBUGGER_ATTACHED) {
  timeout = 0;
}
module.exports = {
  logLevel: 'debug',
  require: ['./test/build/mocha-utils.js', 'source-map-support/register'],
  exit: !!process.env.CI,
  retries: process.env.CI ? 3 : 0,
  parallel: !!process.env.PARALLEL,
  timeout: timeout,
  reporter: process.env.CI ? 'spec' : 'dot',
  // This should make mocha crash on uncaught errors.
  // See https://github.com/mochajs/mocha/blob/master/docs/index.md#--allow-uncaught.
  allowUncaught: true,
  // See https://github.com/mochajs/mocha/blob/master/docs/index.md#--async-only--a.
  asyncOnly: true,
};

[ Dauer der Verarbeitung: 0.17 Sekunden  (vorverarbeitet)  ]