Sha256: e01ea380015ed698c3c0e2ccd0db72f3fc3ef1abc4519f122aa1c1a8d419a505
Contents?: true
Size: 743 Bytes
Versions: 26
Compression:
Stored size: 743 Bytes
Contents
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 { SnapshotEnvironment as S, SnapshotEnvironmentOptions as a };
Version data entries
26 entries across 26 versions & 1 rubygems