reporter.ts (364B)
1 /** 2 * @license 3 * Copyright 2022 Google Inc. 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 import Mocha from 'mocha'; 8 9 class SpecJSONReporter extends Mocha.reporters.Spec { 10 constructor(runner: Mocha.Runner, options?: Mocha.MochaOptions) { 11 super(runner, options); 12 Mocha.reporters.JSON.call(this, runner, options); 13 } 14 } 15 16 module.exports = SpecJSONReporter;