@@ -68,7 +68,6 @@ suite("Documentation Preview", function () {
6868 editor . selection = new vscode . Selection ( newCursorPos , newCursorPos ) ;
6969
7070 await expect ( waitForRender ( workspaceContext ) ) . to . eventually . be . true ;
71- console . log ( "Waiting for post edit content update..." ) ;
7271 const updatedContent = await contentPromise ;
7372 const updatedContentString = JSON . stringify ( updatedContent , null , 2 ) ;
7473 expect ( updatedContentString , `${ updatedContentString } ` ) . to . include ( expectedEdit ) ;
@@ -99,7 +98,6 @@ suite("Documentation Preview", function () {
9998 await expect ( waitForRender ( workspaceContext ) ) . to . eventually . be . true ;
10099
101100 // Wait for the test promise to complete
102- console . log ( "Waiting for initial content update..." ) ;
103101 const updatedContent = await contentPromise ;
104102 const updatedContentString = JSON . stringify ( updatedContent , null , 2 ) ;
105103
@@ -135,7 +133,6 @@ suite("Documentation Preview", function () {
135133 // FIXME: We are off by 1 right now... so need to do 1 more action
136134 // FIXME: Also the off by 1 behaviour is consistent only if on cached-run (second run and onwards)
137135 await expect ( waitForRender ( workspaceContext ) ) . to . eventually . be . true ;
138- console . log ( "Waiting for post edit content update..." ) ;
139136 let updatedContent = await contentPromise ;
140137 let updatedContentString = JSON . stringify ( updatedContent , null , 2 ) ;
141138 expect ( updatedContentString , `${ updatedContentString } ` ) . to . not . include ( expectedEdit ) ;
@@ -147,7 +144,6 @@ suite("Documentation Preview", function () {
147144
148145 // Wait for render and test promise to complete
149146 await expect ( waitForRender ( workspaceContext ) ) . to . eventually . be . true ;
150- console . log ( "Waiting for post edit content update, FIXME: 1+ action..." ) ;
151147 updatedContent = await contentPromise ;
152148 updatedContentString = JSON . stringify ( updatedContent , null , 2 ) ;
153149 expect ( updatedContentString , `${ updatedContentString } ` ) . to . include ( expectedEdit ) ;
@@ -169,7 +165,6 @@ suite("Documentation Preview", function () {
169165
170166 // Wait for render and test promise to complete
171167 await expect ( waitForRender ( workspaceContext ) ) . to . eventually . be . true ;
172- console . log ( "Waiting for post cursor change content update..." ) ;
173168 const updatedContent = await contentPromise ;
174169 const updatedContentString = JSON . stringify ( updatedContent , null , 2 ) ;
175170 expect ( updatedContentString , `${ updatedContentString } ` ) . to . include ( expectedSymbol ) ;
@@ -277,7 +272,6 @@ suite("Documentation Preview", function () {
277272
278273 // Wait for render and assert webview panel retains render of last focused editor when the panel is visible
279274 await expect ( waitForRender ( workspaceContext ) ) . to . eventually . be . true ;
280- console . log ( "Waiting for post visible tab change content update..." ) ;
281275 const updatedContent = await contentPromise ;
282276 const updatedContentString = JSON . stringify ( updatedContent , null , 2 ) ;
283277 // FIXME: This feature is not implemented yet
@@ -307,7 +301,6 @@ suite("Documentation Preview", function () {
307301
308302 // Wait for render and assert webview panel to displayed that no documentation is available
309303 await expect ( waitForRender ( workspaceContext ) ) . to . eventually . be . true ;
310- console . log ( "Waiting for post extension editor change content update..." ) ;
311304 const updatedContent = await contentPromise ;
312305 const updatedContentString = JSON . stringify ( updatedContent , null , 2 ) ;
313306 expect ( updatedContentString , `${ updatedContentString } ` ) . to . include (
0 commit comments