Skip to content

Commit f183538

Browse files
committed
fix: node 15 rm -> node 12 unlink
1 parent 979fd2e commit f183538

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

__tests__/upload.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ describe('upload-azure-blob => upload.ts', () => {
3333
})
3434

3535
afterAll(async () => {
36-
await fs.promises.rm(FILENAME);
37-
await fs.promises.rm(FILENAME2);
36+
await fs.promises.unlink(FILENAME);
37+
await fs.promises.unlink(FILENAME2);
3838
})
3939
})

0 commit comments

Comments
 (0)