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

Commit

Permalink
Fix Node's deprecation message about rmdirSync usage (#738)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov authored Jan 17, 2021
1 parent a427761 commit 0fa7ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrationTests/integration-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function exec(command, options = {}) {

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

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

0 comments on commit 0fa7ace

Please sign in to comment.