File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
components/ide/jetbrains/launcher Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -298,6 +298,13 @@ func serve(launchCtx *LaunchContext) {
298298 fmt .Fprint (w , jsonLink )
299299 })
300300 http .HandleFunc ("/status" , func (w http.ResponseWriter , r * http.Request ) {
301+ test := func () bool {
302+ return true
303+ }
304+ if test () {
305+ http .Error (w , "test not ready" , http .StatusServiceUnavailable )
306+ return
307+ }
301308 if launchCtx .preferToolbox {
302309 response := make (map [string ]string )
303310 toolboxLink , err := resolveToolboxLink (launchCtx .wsInfo )
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ func TestParseGitpodConfig(t *testing.T) {
3939}
4040
4141func TestUpdateVMOptions (t * testing.T ) {
42+ t .Skip ()
4243 tests := []struct {
4344 Desc string
4445 Alias string
You can’t perform that action at this time.
0 commit comments