change partition key FT

This commit is contained in:
Bikram Choudhury
2026-01-07 12:52:24 +05:30
parent 4ac8cd8fe4
commit f7501be362
2 changed files with 81 additions and 81 deletions

View File

@@ -11,7 +11,7 @@ export interface TestNameOptions {
prefixed?: boolean;
}
export function generateUniqueName(baseName, options?: TestNameOptions): string {
export function generateUniqueName(baseName: string, options?: TestNameOptions): string {
const length = options?.length ?? 1;
const timestamp = options?.timestampped === undefined ? true : options.timestampped;
const prefixed = options?.prefixed === undefined ? true : options.prefixed;