From a18fef77904a7e165d99668311c71af81f5e3e9d Mon Sep 17 00:00:00 2001 From: Ben Demboski Date: Mon, 29 Jan 2024 17:06:31 -0800 Subject: [PATCH] Remove unused method This used to be an override of a method in the base class, but that method is long gone... --- lib/commands/test.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/lib/commands/test.js b/lib/commands/test.js index 86aad274..a5e90dfa 100644 --- a/lib/commands/test.js +++ b/lib/commands/test.js @@ -10,18 +10,6 @@ module.exports = TestCommand.extend({ availableOptions: buildAvailableOptions(), - rmTmp() { - if (process.platform === 'win32') { - // There is some kind of race condition where we intermittently get EBUSY - // deleting the temp directory on windows, which causes the test to fail. - // Unfortunately adding logging to try to track it down makes it go away, - // so let's just delay for a bit as a dirty workaround. - require('child_process').execSync('ping 127.0.0.1 -n 2 > nul'); - } - - return this._super(...arguments); - }, - async run(commandOptions) { let _super = this._super; await prepareRunCommand(this.project);