I'm super new in this field and I hope this is not a stupid question. Is it possible to test a VS Code extension without building it using the dev source code?
We are trying to develop a test automation framework of several extensions developed by our organization. The requirement is that we should use only ".vsix" files (which are packaged by the pipeline) for test.
I searched for several tools but they either require source code to build the extension or are not suitable in the case (I will provide detail later)
Mainly tried with 2 options:
- vscode-extension-tester: https://github.com/redhat-developer/vscode-extension-tester But this needs to build the extension
- code-server: https://github.com/coder/code-server This one allows to install and run extensions in a browser instance of VS Code and turns everything to web GUI testing. However, it doesn't guarantee full identical behaviors between the browser instance and an actual one.