@@ -52,7 +52,7 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub)
52
52
53
53
Currently, we run a command to manually generate the code coverage shield. Follow these steps:
54
54
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
56
56
2 . Run ` yarn badges `
57
57
3 . Go into the README and change the color from ` red ` to ` green ` in this line:
58
58
@@ -72,8 +72,10 @@ This directory contains scripts used for the development of code-server.
72
72
- Runs formatters.
73
73
- [ ./ci/dev/lint.sh] ( ./dev/lint.sh ) (` yarn lint ` )
74
74
- 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.
77
79
- [ ./ci/dev/ci.sh] ( ./dev/ci.sh ) (` yarn ci ` )
78
80
- Runs ` yarn fmt ` , ` yarn lint ` and ` yarn test ` .
79
81
- [ ./ci/dev/watch.ts] ( ./dev/watch.ts ) (` yarn watch ` )
@@ -142,11 +144,13 @@ This directory contains the scripts used in CI.
142
144
Helps avoid clobbering the CI configuration.
143
145
144
146
- [ ./steps/fmt.sh] ( ./steps/fmt.sh )
145
- - Runs ` yarn fmt ` after ensuring VS Code is patched .
147
+ - Runs ` yarn fmt ` .
146
148
- [ ./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 ` .
150
154
- [ ./steps/release.sh] ( ./steps/release.sh )
151
155
- Runs the release process.
152
156
- Generates the npm package at ` ./release ` .
0 commit comments