@@ -52,7 +52,7 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub)
5252
5353Currently, we run a command to manually generate the code coverage shield. Follow these steps:
5454
55- 1 . Run ` yarn test ` and make sure all the tests are passing
55+ 1 . Run ` yarn test:unit ` and make sure all the tests are passing
56562 . Run ` yarn badges `
57573 . Go into the README and change the color from ` red ` to ` green ` in this line:
5858
@@ -72,8 +72,10 @@ This directory contains scripts used for the development of code-server.
7272 - Runs formatters.
7373- [ ./ci/dev/lint.sh] ( ./dev/lint.sh ) (` yarn lint ` )
7474 - Runs linters.
75- - [ ./ci/dev/test.sh] ( ./dev/test.sh ) (` yarn test ` )
76- - Runs tests.
75+ - [ ./ci/dev/test-unit.sh] ( ./dev/test-unit.sh ) (` yarn test:unit ` )
76+ - Runs unit tests.
77+ - [ ./ci/dev/test-e2e.sh] ( ./dev/test-e2e.sh ) (` yarn test:e2e ` )
78+ - Runs end-to-end tests.
7779- [ ./ci/dev/ci.sh] ( ./dev/ci.sh ) (` yarn ci ` )
7880 - Runs ` yarn fmt ` , ` yarn lint ` and ` yarn test ` .
7981- [ ./ci/dev/watch.ts] ( ./dev/watch.ts ) (` yarn watch ` )
@@ -142,11 +144,13 @@ This directory contains the scripts used in CI.
142144Helps avoid clobbering the CI configuration.
143145
144146- [ ./steps/fmt.sh] ( ./steps/fmt.sh )
145- - Runs ` yarn fmt ` after ensuring VS Code is patched .
147+ - Runs ` yarn fmt ` .
146148- [ ./steps/lint.sh] ( ./steps/lint.sh )
147- - Runs ` yarn lint ` after ensuring VS Code is patched.
148- - [ ./steps/test.sh] ( ./steps/test.sh )
149- - Runs ` yarn test ` after ensuring VS Code is patched.
149+ - Runs ` yarn lint ` .
150+ - [ ./steps/test-unit.sh] ( ./steps/test-unit.sh )
151+ - Runs ` yarn test:unit ` .
152+ - [ ./steps/test-e2e.sh] ( ./steps/test-e2e.sh )
153+ - Runs ` yarn test:e2e ` .
150154- [ ./steps/release.sh] ( ./steps/release.sh )
151155 - Runs the release process.
152156 - Generates the npm package at ` ./release ` .
0 commit comments