Skip to content

Commit 39ad547

Browse files
committed
Add some help for working from the root
1 parent 3f19991 commit 39ad547

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

apps/vscode/CONTRIBUTING.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,19 @@ yarn # install dependencies
77
yarn dev-vscode # run development/debug version of extension
88
```
99

10+
Run the extension tests with:
11+
12+
```sh
13+
yarn test-vscode # compile the test files and run them with the vscode-test CLI
14+
```
15+
1016
Install the dev version of the extension in VS Code or Positron with:
1117

1218
```sh
1319
yarn install-vscode
1420
yarn install-positron
1521
```
1622

17-
1823
# Debugging the extension
1924

2025
The extension must have been built in dev mode (see the build section). The `dev` build flag is essential for debugging:

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"build": "turbo run build",
1212
"dev-writer": "turbo run dev --filter writer*",
1313
"dev-vscode": "turbo run dev --filter quarto...",
14+
"test-vscode": "cd apps/vscode && yarn test",
1415
"install-vscode": "cd apps/vscode && yarn install-vscode",
1516
"install-positron": "cd apps/vscode && yarn install-positron",
1617
"lint": "turbo run lint",

0 commit comments

Comments
 (0)