File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -196,10 +196,16 @@ suite('Linting - General Tests', () => {
196196 test ( 'Enable Flake8 and test linter' ,  async  ( )  =>  { 
197197 await  testEnablingDisablingOfLinter ( Product . flake8 ,  true ) ; 
198198 } ) ; 
199-  test ( 'Disable Prospector and test linter' ,  async  ( )  =>  { 
199+  test ( 'Disable Prospector and test linter' ,  async  function  ( )  { 
200+  // Skipping to solve #3464, tracked by issue #3466. 
201+  // tslint:disable-next-line:no-invalid-this 
202+  return  this . skip ( ) ; 
200203 await  testEnablingDisablingOfLinter ( Product . prospector ,  false ) ; 
201204 } ) ; 
202-  test ( 'Enable Prospector and test linter' ,  async  ( )  =>  { 
205+  test ( 'Enable Prospector and test linter' ,  async  function  ( )  { 
206+  // Skipping to solve #3464, tracked by issue #3466. 
207+  // tslint:disable-next-line:no-invalid-this 
208+  return  this . skip ( ) ; 
203209 await  testEnablingDisablingOfLinter ( Product . prospector ,  true ) ; 
204210 } ) ; 
205211 test ( 'Disable Pydocstyle and test linter' ,  async  ( )  =>  { 
                         You can’t perform that action at this time. 
           
                  
0 commit comments