Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tylfin/vscode-go-check
VS Code Extension for the check.v1 test suite
https://github.com/tylfin/vscode-go-check
Last synced: 3 days ago
JSON representation
VS Code Extension for the check.v1 test suite
- Host: GitHub
- URL: https://github.com/tylfin/vscode-go-check
- Owner: tylfin
- License: mit
- Created: 2020-06-25T20:21:40.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-14T18:17:32.000Z (over 1 year ago)
- Last Synced: 2023-03-25T15:01:59.847Z (over 1 year ago)
- Language: TypeScript
- Size: 1.02 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go Check for Visual Studio Code
VS Code Extension for the [Go `check.v1` test suite](https://gopkg.in/check.v1)
## Installation
Only manual installations are currently supported. Simply download the latest release and follow the instructions
here to [Install from a VSIX](https://code.visualstudio.com/docs/editor/extension-marketplace#_install-from-a-vsix).## Run in for development
* Press `F5` to open a new window with your extension loaded.
* Run your command from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) and typing `Hello World`.
* Set breakpoints in your code inside `src/extension.ts` to debug your extension.
* Find output from your extension in the debug console.## Run tests
* Open the debug viewlet (`Ctrl+Shift+D` or `Cmd+Shift+D` on Mac) and from the launch configuration dropdown pick `Extension Tests`.
* Press `F5` to run the tests in a new window with your extension loaded.
* See the output of the test result in the debug console.
* Make changes to `src/test/suite/extension.test.ts` or create new test files inside the `test/suite` folder.
* The provided test runner will only consider files matching the name pattern `**.test.ts`.
* You can create folders inside the `test` folder to structure your tests any way you want.