jest-metadata
Version:
🦸♂️ Superhero power for your Jest reporters! 🦸♀️
14 lines (13 loc) • 585 B
TypeScript
export declare class AggregatedIdentifier {
private readonly _testFilePath;
private readonly _identifier;
constructor(_testFilePath: string | undefined, _identifier?: string);
get testFilePath(): string | undefined;
get identifier(): string;
static global(identifier: string): AggregatedIdentifier;
static parse(id: string): AggregatedIdentifier;
static normalize(id: string | AggregatedIdentifier): AggregatedIdentifier;
toString(): string;
equals(other: AggregatedIdentifier): boolean;
nest(subIdentifier: string): AggregatedIdentifier;
}