Kargi-Sitesi/node_modules/jasmine-spec-reporter/built/display-processor.d.ts

19 lines
973 B
TypeScript
Raw Normal View History

2024-11-03 21:30:09 -05:00
/// <reference types="jasmine" />
import { Configuration } from "./configuration";
import { CustomReporterResult } from "./spec-reporter";
import { Theme } from "./theme";
import SuiteInfo = jasmine.SuiteInfo;
export declare class DisplayProcessor {
protected configuration: Configuration;
protected theme: Theme;
constructor(configuration: Configuration, theme: Theme);
displayJasmineStarted(info: SuiteInfo, log: string): string;
displaySuite(suite: CustomReporterResult, log: string): string;
displaySpecStarted(spec: CustomReporterResult, log: string): string;
displaySuccessfulSpec(spec: CustomReporterResult, log: string): string;
displayFailedSpec(spec: CustomReporterResult, log: string): string;
displaySpecErrorMessages(spec: CustomReporterResult, log: string): string;
displaySummaryErrorMessages(spec: CustomReporterResult, log: string): string;
displayPendingSpec(spec: CustomReporterResult, log: string): string;
}