JeremyYao commented on issue #1290: URL: https://github.com/apache/daffodil-vscode/issues/1290#issuecomment-3099129936
Question here is how are we able to configure `extest` commands to recognize the specific tests for UI testing and have them run? <img width="821" height="75" alt="Image" src="https://github.com/user-attachments/assets/ee8fe57c-9bdb-4311-82de-1f30b0fb51b0" /> ``` import { Workbench } from 'vscode-extension-tester' describe('My Extension E2E', () => { it('runs a simple test', async () => { const workbench = new Workbench() const input = await workbench.openCommandPrompt() await input.setText('>About') await input.confirm() // Add assertions here }) }) ``` -- 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]
