vscode/test/README.md

32 lines
800 B
Markdown
Raw Normal View History

2015-11-13 21:39:38 +08:00
# Tests
## Run
The best way to run the Code tests is from within VS Code. Simply press `CMD+Shift+T` (`Ctrl+Shift+T` on Windows) to launch the tests. To make development changes to unit tests you need to be running `gulp`. See [Development Workflow](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#incremental-build) for more details.
2015-11-13 21:39:38 +08:00
2015-11-16 03:27:56 +08:00
If you wish to run the tests from a terminal, from the `vscode` folder run:
**OS X and Linux**
2015-11-13 21:39:38 +08:00
2015-11-16 17:58:51 +08:00
./test/run.sh
2015-11-13 21:39:38 +08:00
**Windows**
2015-11-16 17:58:51 +08:00
test\run
2015-11-13 21:39:38 +08:00
## Debug
2015-11-16 04:59:34 +08:00
You can use VS Code to debug your tests. Switch to the Debug viewlet, pick the `Unit Tests` debug target and press `Play`.
2015-11-13 21:39:38 +08:00
## Coverage
2015-11-16 04:59:34 +08:00
The following command will create a `coverage` folder at the root of the workspace:
2015-11-13 21:39:38 +08:00
**OS X and Linux**
2015-11-17 01:47:22 +08:00
./test/run.sh --coverage
**Windows**
2015-11-17 01:47:22 +08:00
test\run --coverage