@@ -24,7 +24,7 @@ describe('source behavior changes', () => {
24
24
} ) ;
25
25
} ) ;
26
26
27
- it ( 'produces dry run output and makes no changes' , async ( ) => {
27
+ it . skip ( 'produces dry run output and makes no changes' , async ( ) => {
28
28
const originalProject = await getProject ( session ) ;
29
29
const originalFileList = await fs . promises . readdir ( path . join ( session . project . dir , 'force-app' ) , {
30
30
recursive : true ,
@@ -86,7 +86,7 @@ describe('source behavior changes', () => {
86
86
) ;
87
87
} ) ;
88
88
89
- it ( 'produces actual output and makes expected changes' , async ( ) => {
89
+ it . skip ( 'produces actual output and makes expected changes' , async ( ) => {
90
90
const result = execCmd < SourceBehaviorResult > (
91
91
'project convert source-behavior --behavior decomposeCustomLabelsBeta --json' ,
92
92
{
@@ -104,7 +104,7 @@ describe('source behavior changes', () => {
104
104
expect ( fs . existsSync ( path . join ( session . project . dir , DRY_RUN_DIR ) ) ) . to . be . false ;
105
105
} ) ;
106
106
107
- it ( "throws on repeated preset that's already done" , ( ) => {
107
+ it . skip ( "throws on repeated preset that's already done" , ( ) => {
108
108
const err = execCmd < SourceBehaviorResult > (
109
109
'project convert source-behavior --behavior decomposeCustomLabelsBeta --json' ,
110
110
{
0 commit comments