Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit 0fa7ace

Browse files
Fix Node's deprecation message about rmdirSync usage (#738)
1 parent a427761 commit 0fa7ace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integrationTests/integration-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function exec(command, options = {}) {
1717

1818
describe('Integration Tests', () => {
1919
const tmpDir = path.join(os.tmpdir(), 'express-graphql-integrationTmp');
20-
fs.rmdirSync(tmpDir, { recursive: true });
20+
fs.rmdirSync(tmpDir, { recursive: true, force: true });
2121
fs.mkdirSync(tmpDir);
2222

2323
const distDir = path.resolve('./npmDist');

0 commit comments

Comments
 (0)