@@ -15,7 +15,7 @@ describe('RawOutputObserver clear behavior', () => {
1515 const createObserver = ( config : Record < string , unknown > = { } ) => {
1616 const outputChannel = vscode . window . createOutputChannel ( 'phpunit' ) ;
1717 const configuration = new Configuration ( {
18- clearOutputOnRun : true ,
18+ clearDebugOutputOnRun : true ,
1919 ...config ,
2020 } ) ;
2121 const observer = new RawOutputObserver ( outputChannel , configuration ) ;
@@ -44,7 +44,7 @@ describe('RawOutputObserver clear behavior', () => {
4444
4545 it ( 'each observer instance clears independently' , ( ) => {
4646 const outputChannel = vscode . window . createOutputChannel ( 'phpunit' ) ;
47- const configuration = new Configuration ( { clearOutputOnRun : true } ) ;
47+ const configuration = new Configuration ( { clearDebugOutputOnRun : true } ) ;
4848 const observer1 = new RawOutputObserver ( outputChannel , configuration ) ;
4949 const observer2 = new RawOutputObserver ( outputChannel , configuration ) ;
5050
@@ -68,7 +68,7 @@ describe.each(detectPhpUnitStubs())('RawOutputObserver on $name (PHPUnit $phpUni
6868 php : 'php' ,
6969 phpunit : binary ,
7070 args : [ '-c' , 'phpunit.xml' , ...stubArgs ] ,
71- clearOutputOnRun : true ,
71+ clearDebugOutputOnRun : true ,
7272 } ) ;
7373 testRunner = new TestRunner ( ) ;
7474 const outputChannel = vscode . window . createOutputChannel ( 'phpunit' ) ;
@@ -98,7 +98,7 @@ describe.each(detectPhpUnitStubs())('RawOutputObserver on $name (PHPUnit $phpUni
9898 }
9999
100100 it ( 'should not clear output channel' , async ( ) => {
101- await configuration . update ( 'clearOutputOnRun ' , false ) ;
101+ await configuration . update ( 'clearDebugOutputOnRun ' , false ) ;
102102 const testFile = phpUnitProject ( 'tests/AssertionsTest.php' ) ;
103103 const filter = 'test_passed' ;
104104 await run ( testFile , filter ) ;
0 commit comments