@@ -28,7 +28,7 @@ test("empty workbench state does not auto-open the launch overlay", () => {
2828 assert . deepEqual ( normalized . overlay . target , { type : "wsl" , distro : "Ubuntu" } ) ;
2929} ) ;
3030
31- test ( "bootstrap with zero open workspaces keeps the launch overlay hidden " , ( ) => {
31+ test ( "bootstrap with zero open workspaces keeps the launch overlay visible " , ( ) => {
3232 const next = buildWorkbenchStateFromBootstrap (
3333 {
3434 tabs : [ ] ,
@@ -66,13 +66,13 @@ test("bootstrap with zero open workspaces keeps the launch overlay hidden", () =
6666 ) ;
6767
6868 assert . equal ( next . tabs . length , 0 ) ;
69- assert . equal ( next . overlay . visible , false ) ;
69+ assert . equal ( next . overlay . visible , true ) ;
7070 assert . equal ( next . overlay . mode , "remote" ) ;
7171 assert . equal ( next . overlay . input , "ssh://demo" ) ;
7272 assert . deepEqual ( next . overlay . target , { type : "wsl" , distro : "Ubuntu" } ) ;
7373} ) ;
7474
75- test ( "ui state with zero open workspaces keeps the launch overlay hidden " , ( ) => {
75+ test ( "ui state with zero open workspaces keeps the launch overlay visible " , ( ) => {
7676 const next = applyWorkbenchUiState (
7777 {
7878 tabs : [ ] ,
@@ -105,7 +105,7 @@ test("ui state with zero open workspaces keeps the launch overlay hidden", () =>
105105 ) ;
106106
107107 assert . equal ( next . tabs . length , 0 ) ;
108- assert . equal ( next . overlay . visible , false ) ;
108+ assert . equal ( next . overlay . visible , true ) ;
109109 assert . equal ( next . overlay . mode , "remote" ) ;
110110 assert . equal ( next . overlay . input , "ssh://demo" ) ;
111111 assert . deepEqual ( next . overlay . target , { type : "wsl" , distro : "Ubuntu" } ) ;
0 commit comments