We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b722bfa commit 06bf4f6Copy full SHA for 06bf4f6
tests/legacy-cli/e2e/utils/utils.ts
@@ -23,6 +23,6 @@ export function wait(msecs: number): Promise<void> {
23
});
24
}
25
26
-export async function mktempd(prefix: string) {
27
- return await realpath(await mkdtemp(path.join(tmpdir(), prefix)));
+export async function mktempd(prefix: string): Promise<string> {
+ return realpath(await mkdtemp(path.join(tmpdir(), prefix)));
28
0 commit comments