File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 5454 run : yarn lint
5555 if : success()
5656
57+ - name : Run code-server unit tests
58+ run : yarn test:unit
59+ if : success()
60+
5761 - name : Upload coverage report to Codecov
5862 run : yarn coverage
5963 if : success()
@@ -404,9 +408,6 @@ jobs:
404408 rm -r node_modules/playwright
405409 yarn install --check-files
406410
407- - name : Run end-to-end tests
408- run : yarn test:unit
409-
410411 - name : Run end-to-end tests
411412 run : yarn test:e2e
412413
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ export const register = async (
162162 }
163163
164164 server . on ( "close" , ( ) => {
165- vscode . vscodeServer . close ( )
165+ vscode ? .vscodeServer . close ( )
166166 } )
167167
168168 app . use ( ( ) => {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import * as integration from "../../../utils/integration"
77
88const NOT_FOUND = {
99 code : 404 ,
10- message : "not found " ,
10+ message : "Not Found " ,
1111}
1212
1313describe ( "/_static" , ( ) => {
You can’t perform that action at this time.
0 commit comments