Skip to content

Commit 542a78e

Browse files
authored
Stop showing warnings for unhandled requests by the mock API server (#1767)
1 parent f1b2498 commit 542a78e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/mocks/mock-gh-api-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class MockGitHubApiServer extends DisposableObject {
3030
return;
3131
}
3232

33-
this.server.listen();
33+
this.server.listen({ onUnhandledRequest: 'bypass' });
3434
this._isListening = true;
3535
}
3636

0 commit comments

Comments
 (0)