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.
fs.rmdir
1 parent c900733 commit f18730eCopy full SHA for f18730e
test/index.test.ts
@@ -41,6 +41,6 @@ describe('electron-installer-dmg', () => {
41
42
afterEach(async () => existsSync(fixtureDMGPath) ? fs.unlink(fixtureDMGPath) : null);
43
44
- after(async () => fs.rmdir(appPath, { recursive: true }));
+ after(async () => fs.rm(appPath, { recursive: true }));
45
});
46
0 commit comments