@@ -31,13 +31,13 @@ export function setup() {
3131 await terminal . assertSingleTab ( { name : ANY_PROFILE_NAME } ) ;
3232 } ) ;
3333
34- it ( 'should set the default profile to a contributed one' , async ( ) => {
34+ it . skip ( 'should set the default profile to a contributed one' , async ( ) => {
3535 await terminal . runCommandWithValue ( TerminalCommandIdWithValue . SelectDefaultProfile , CONTRIBUTED_PROFILE_NAME ) ;
3636 await terminal . createTerminal ( ) ;
3737 await terminal . assertSingleTab ( { name : CONTRIBUTED_PROFILE_NAME } ) ;
3838 } ) ;
3939
40- it ( 'should use the default contributed profile on panel open and for splitting' , async ( ) => {
40+ it . skip ( 'should use the default contributed profile on panel open and for splitting' , async ( ) => {
4141 await terminal . runCommandWithValue ( TerminalCommandIdWithValue . SelectDefaultProfile , CONTRIBUTED_PROFILE_NAME ) ;
4242 await terminal . runCommand ( TerminalCommandId . Show ) ;
4343 await terminal . runCommand ( TerminalCommandId . Split ) ;
@@ -62,7 +62,7 @@ export function setup() {
6262 await terminal . assertSingleTab ( { name : ANY_PROFILE_NAME } ) ;
6363 } ) ;
6464
65- it ( 'createWithProfile command should create a terminal with a contributed profile' , async ( ) => {
65+ it . skip ( 'createWithProfile command should create a terminal with a contributed profile' , async ( ) => {
6666 await terminal . runCommandWithValue ( TerminalCommandIdWithValue . NewWithProfile , CONTRIBUTED_PROFILE_NAME ) ;
6767 await terminal . assertSingleTab ( { name : CONTRIBUTED_PROFILE_NAME } ) ;
6868 } ) ;
@@ -73,7 +73,7 @@ export function setup() {
7373 await terminal . assertTerminalGroups ( [ [ { } , { } ] ] ) ;
7474 } ) ;
7575
76- it ( 'createWithProfile command should create a split terminal with a contributed profile' , async ( ) => {
76+ it . skip ( 'createWithProfile command should create a split terminal with a contributed profile' , async ( ) => {
7777 await terminal . runCommand ( TerminalCommandId . Show ) ;
7878 await terminal . assertSingleTab ( { } ) ;
7979 await terminal . runCommandWithValue ( TerminalCommandIdWithValue . NewWithProfile , CONTRIBUTED_PROFILE_NAME , true ) ;
0 commit comments