@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
16 lines • 392 B
TypeScript
import type { FileSystemLocation } from '../io';
import type { ExpectationDetails } from '../screenplay';
/**
* @group Errors
*/
export interface ErrorOptions {
message: string;
location?: FileSystemLocation;
expectation?: ExpectationDetails;
diff?: {
expected: unknown;
actual: unknown;
};
cause?: Error;
}
//# sourceMappingURL=ErrorOptions.d.ts.map