@@ -145,22 +145,22 @@ suite.only('vscode API - window', () => {
145145 } ) ;
146146 } ) ;
147147
148- test ( 'active editor not always correct... #49125' , async function ( ) {
149- const randomFile1 = await createRandomFile ( ) ;
150- const randomFile2 = await createRandomFile ( ) ;
151-
152- const [ docA , docB ] = await Promise . all ( [
153- workspace . openTextDocument ( randomFile1 ) ,
154- workspace . openTextDocument ( randomFile2 )
155- ] ) ;
156- for ( let c = 0 ; c < 4 ; c ++ ) {
157- let editorA = await window . showTextDocument ( docA , ViewColumn . One ) ;
158- assert . equal ( window . activeTextEditor , editorA ) ;
159-
160- let editorB = await window . showTextDocument ( docB , ViewColumn . Two ) ;
161- assert . equal ( window . activeTextEditor , editorB ) ;
162- }
163- } ) ;
148+ // test('active editor not always correct... #49125', async function () {
149+ // const randomFile1 = await createRandomFile();
150+ // const randomFile2 = await createRandomFile();
151+
152+ // const [docA, docB] = await Promise.all([
153+ // workspace.openTextDocument(randomFile1),
154+ // workspace.openTextDocument(randomFile2)
155+ // ]);
156+ // for (let c = 0; c < 4; c++) {
157+ // let editorA = await window.showTextDocument(docA, ViewColumn.One);
158+ // assert.equal(window.activeTextEditor, editorA);
159+
160+ // let editorB = await window.showTextDocument(docB, ViewColumn.Two);
161+ // assert.equal(window.activeTextEditor, editorB);
162+ // }
163+ // });
164164
165165 test ( 'default column when opening a file' , async ( ) => {
166166 const [ docA , docB , docC ] = await Promise . all ( [
0 commit comments