Skip to content

Commit

Permalink
test: remove makeTestOutputPath optional param
Browse files Browse the repository at this point in the history
  • Loading branch information
toomuchdesign committed Mar 5, 2024
1 parent 8a4dff6 commit 0a307a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test-utils/makeTestOutputPath.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()}`);
}

0 comments on commit 0a307a2

Please sign in to comment.