File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 54
54
run : yarn lint
55
55
if : success()
56
56
57
+ - name : Run code-server unit tests
58
+ run : yarn test:unit
59
+ if : success()
60
+
57
61
- name : Upload coverage report to Codecov
58
62
run : yarn coverage
59
63
if : success()
@@ -404,9 +408,6 @@ jobs:
404
408
rm -r node_modules/playwright
405
409
yarn install --check-files
406
410
407
- - name : Run end-to-end tests
408
- run : yarn test:unit
409
-
410
411
- name : Run end-to-end tests
411
412
run : yarn test:e2e
412
413
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ export const register = async (
162
162
}
163
163
164
164
server . on ( "close" , ( ) => {
165
- vscode . vscodeServer . close ( )
165
+ vscode ? .vscodeServer . close ( )
166
166
} )
167
167
168
168
app . use ( ( ) => {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import * as integration from "../../../utils/integration"
7
7
8
8
const NOT_FOUND = {
9
9
code : 404 ,
10
- message : "not found " ,
10
+ message : "Not Found " ,
11
11
}
12
12
13
13
describe ( "/_static" , ( ) => {
You can’t perform that action at this time.
0 commit comments