mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 17:19:01 +01:00
24 lines
470 B
Markdown
24 lines
470 B
Markdown
# Tests
|
|
|
|
## Run
|
|
|
|
You can run tests directly from the command line:
|
|
|
|
mocha
|
|
|
|
Alternatively, you can run them from any browser. Simply
|
|
open the URL provided by the following command:
|
|
|
|
mocha --browser
|
|
|
|
## Debug
|
|
|
|
Simply VSCode to debug your tests. Switch to the Debug viewlet,
|
|
pick the `Mocha` debug target and hit `Play`!
|
|
|
|
## Coverage
|
|
|
|
You can also get a coverage report. The following command will
|
|
create a `coverage` folder at the root of the project:
|
|
|
|
mocha --coverage |