File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/vs/workbench/contrib/terminalContrib/chatAgentTools/test/electron-browser Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,10 @@ import { NullLogService } from '../../../../../../platform/log/common/log.js';
2222import { FileService } from '../../../../../../platform/files/common/fileService.js' ;
2323import { Schemas } from '../../../../../../base/common/network.js' ;
2424import { TreeSitterLibraryService } from '../../../../../services/treeSitter/browser/treeSitterLibraryService.js' ;
25+ import { arch } from '../../../../../../base/common/process.js' ;
2526
2627// TODO: The powershell grammar can cause an OOM crash on arm https://github.com/microsoft/vscode/issues/273177
27- ( process . arch === 'arm' || process . arch === 'arm64' ? suite . skip : suite ) ( 'command re-writing' , ( ) => {
28+ ( arch === 'arm' || arch === 'arm64' ? suite . skip : suite ) ( 'command re-writing' , ( ) => {
2829 const store = ensureNoDisposablesAreLeakedInTestSuite ( ) ;
2930
3031 let instantiationService : TestInstantiationService ;
You can’t perform that action at this time.
0 commit comments