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.
1 parent e02350d commit a946f9eCopy full SHA for a946f9e
extensions/vscode-test-resolver/src/extension.ts
@@ -130,8 +130,7 @@ export function activate(context: vscode.ExtensionContext) {
130
});
131
132
return serverPromise.then(serverAddr => {
133
- // eslint-disable-next-line no-async-promise-executor
134
- return new Promise<vscode.ResolvedAuthority>(async (res, _rej) => {
+ return new Promise<vscode.ResolvedAuthority>((res, _rej) => {
135
const proxyServer = net.createServer(proxySocket => {
136
outputChannel.appendLine(`Proxy connection accepted`);
137
let remoteReady = true, localReady = true;
0 commit comments