You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
722 B
TypeScript
23 lines
722 B
TypeScript
interface ParsedStack {
|
|
method: string;
|
|
file: string;
|
|
line: number;
|
|
column: number;
|
|
}
|
|
|
|
interface SnapshotEnvironment {
|
|
getVersion: () => string;
|
|
getHeader: () => string;
|
|
resolvePath: (filepath: string) => Promise<string>;
|
|
resolveRawPath: (testPath: string, rawPath: string) => Promise<string>;
|
|
saveSnapshotFile: (filepath: string, snapshot: string) => Promise<void>;
|
|
readSnapshotFile: (filepath: string) => Promise<string | null>;
|
|
removeSnapshotFile: (filepath: string) => Promise<void>;
|
|
processStackTrace?: (stack: ParsedStack) => ParsedStack;
|
|
}
|
|
interface SnapshotEnvironmentOptions {
|
|
snapshotsDirName?: string;
|
|
}
|
|
|
|
export type { ParsedStack as P, SnapshotEnvironment as S, SnapshotEnvironmentOptions as a };
|