verbose_reporter.d.ts 1.0 KB

12345678910111213141516171819202122232425
  1. /**
  2. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. import { Config } from '@jest/types';
  8. import { AggregatedResult, AssertionResult, Suite, TestResult } from '@jest/test-result';
  9. import { Test } from './types';
  10. import DefaultReporter from './default_reporter';
  11. export default class VerboseReporter extends DefaultReporter {
  12. protected _globalConfig: Config.GlobalConfig;
  13. constructor(globalConfig: Config.GlobalConfig);
  14. static filterTestResults(testResults: Array<AssertionResult>): Array<AssertionResult>;
  15. static groupTestsBySuites(testResults: Array<AssertionResult>): Suite;
  16. onTestResult(test: Test, result: TestResult, aggregatedResults: AggregatedResult): void;
  17. private _logTestResults;
  18. private _logSuite;
  19. private _getIcon;
  20. private _logTest;
  21. private _logTests;
  22. private _logTodoOrPendingTest;
  23. private _logLine;
  24. }
  25. //# sourceMappingURL=verbose_reporter.d.ts.map