From 0a307a202c527fb5ef9640ad9c11ec2699bf4f35 Mon Sep 17 00:00:00 2001 From: Andrea Carraro Date: Tue, 5 Mar 2024 06:50:32 +0100 Subject: [PATCH] test: remove makeTestOutputPath optional param --- test/test-utils/makeTestOutputPath.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-utils/makeTestOutputPath.ts b/test/test-utils/makeTestOutputPath.ts index 0140f18..944ee95 100644 --- a/test/test-utils/makeTestOutputPath.ts +++ b/test/test-utils/makeTestOutputPath.ts @@ -5,6 +5,6 @@ import { fixtures } from './fixtures'; * Generate output paths in the fixtures folder * as a schemas-autogenerated-* folder */ -export function makeTestOutputPath(id: string = 'no-id'): string { +export function makeTestOutputPath(id: string): string { return path.resolve(fixtures, `schemas-autogenerated-${id}-${Date.now()}`); }