mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
17 lines
364 B
TypeScript
17 lines
364 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2022 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import Mocha from 'mocha';
|
|
|
|
class SpecJSONReporter extends Mocha.reporters.Spec {
|
|
constructor(runner: Mocha.Runner, options?: Mocha.MochaOptions) {
|
|
super(runner, options);
|
|
Mocha.reporters.JSON.call(this, runner, options);
|
|
}
|
|
}
|
|
|
|
module.exports = SpecJSONReporter;
|