We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4701cde commit a0e8c26Copy full SHA for a0e8c26
scripts/emulator-testing/emulators/emulator.ts
@@ -40,7 +40,7 @@ export abstract class Emulator {
40
41
download(): Promise<void> {
42
return new Promise<void>((resolve, reject) => {
43
- tmp.dir((err: Error, dir: string) => {
+ tmp.dir((err: Error|null, dir: string) => {
44
if (err) reject(err);
45
46
console.log(`Created temporary directory at [${dir}].`);
0 commit comments