Skip to content

Commit 8fe70e3

Browse files
kyle-apexcte
andauthored
Improve combineApiRequests performance (#2318)
* Improve combineApiRequests performance * One more optimization, and more tests --------- Co-authored-by: cte <[email protected]>
1 parent c81d359 commit 8fe70e3

File tree

4 files changed

+694
-37
lines changed

4 files changed

+694
-37
lines changed

src/integrations/terminal/__tests__/TerminalProcessExec.pwsh.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,6 @@ describePlatform("TerminalProcess with PowerShell Command Output", () => {
225225
beforeAll(() => {
226226
// Initialize TerminalRegistry event handlers
227227
TerminalRegistry.initialize()
228-
// Log environment info
229-
console.log(`Running PowerShell tests with PowerShell Core available: ${hasPwsh}`)
230228
})
231229

232230
beforeEach(() => {

src/integrations/terminal/__tests__/setupTerminalTests.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ function isPowerShellCoreAvailable() {
1919
const hasPwsh = isPowerShellCoreAvailable()
2020

2121
// Log environment information
22-
console.log(`Test environment: ${process.platform} ${process.arch}`)
23-
console.log(`PowerShell Core available: ${hasPwsh}`)
22+
// console.log(`Test environment: ${process.platform} ${process.arch}`)
23+
// console.log(`PowerShell Core available: ${hasPwsh}`)
2424

2525
// Define interface for global test environment
2626
declare global {

0 commit comments

Comments
 (0)