shanedell commented on PR #1346:
URL: https://github.com/apache/daffodil-vscode/pull/1346#issuecomment-3161355572

   @michael-hoke Also remove this extension from being installed in the 
`src/tests/runTest.ts`. This updated should be something like below:
   
   ```ts
       cp.spawnSync(
         cli,
         [
           ...args,
           '--install-extension',
           'vincaslt.highlight-matching-tag',
           '--install-extension',
           'wmanth.jar-viewer',
         ],
         {
           encoding: 'utf-8',
           stdio: 'inherit',
           shell: os.platform().toLowerCase() != 'darwin',
         }
       )
   ```
   
   becomes:
   
   ```ts
       cp.spawnSync(
         cli,
         [
           ...args,
           '--install-extension',
           'wmanth.jar-viewer',
         ],
         {
           encoding: 'utf-8',
           stdio: 'inherit',
           shell: os.platform().toLowerCase() != 'darwin',
         }
       )
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to