Skip to content

Commit a0e8c26

Browse files
Fix build
1 parent 4701cde commit a0e8c26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/emulator-testing/emulators/emulator.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export abstract class Emulator {
4040

4141
download(): Promise<void> {
4242
return new Promise<void>((resolve, reject) => {
43-
tmp.dir((err: Error, dir: string) => {
43+
tmp.dir((err: Error|null, dir: string) => {
4444
if (err) reject(err);
4545

4646
console.log(`Created temporary directory at [${dir}].`);

0 commit comments

Comments
 (0)