There was an error while loading. Please reload this page.
1 parent 5798dc7 commit e564d71Copy full SHA for e564d71
1 file changed
scripts/provider-replay-track-record.ts
@@ -71,7 +71,7 @@ export function renderProviderTable(records: readonly ProviderTrackRecord[]): st
71
return lines.join("\n");
72
}
73
74
-function parseArgs(argv: string[]): { fixtures?: string; artifacts: string; variants: string[]; seedSuffix: string; maxFixtures: number } {
+function parseArgs(argv: string[]): { fixtures: string | undefined; artifacts: string; variants: string[]; seedSuffix: string; maxFixtures: number } {
75
const args = { fixtures: undefined as string | undefined, artifacts: ".counterfactual-artifacts", variants: [] as string[], seedSuffix: "default", maxFixtures: 500 };
76
for (let i = 0; i < argv.length; i += 1) {
77
const flag = argv[i];
0 commit comments