@@ -283,8 +283,6 @@ describe("Insert, Update, & Delete Blocks", () => {
283283
284284describe ( "Update block cases" , ( ) => {
285285 it ( "Update type only" , async ( ) => {
286- await waitForEditor ( ) ;
287-
288286 const existingBlock = editor . document [ 0 ] ;
289287 editor . insertBlocks ( [ singleBlockWithChildren ] , existingBlock ) ;
290288
@@ -297,8 +295,6 @@ describe("Update block cases", () => {
297295 } ) ;
298296
299297 it ( "Update content only" , async ( ) => {
300- await waitForEditor ( ) ;
301-
302298 const existingBlock = editor . document [ 0 ] ;
303299 editor . insertBlocks ( [ singleBlockWithChildren ] , existingBlock ) ;
304300
@@ -311,8 +307,6 @@ describe("Update block cases", () => {
311307 } ) ;
312308
313309 it ( "Update children only" , async ( ) => {
314- await waitForEditor ( ) ;
315-
316310 const existingBlock = editor . document [ 0 ] ;
317311 editor . insertBlocks ( [ singleBlockWithChildren ] , existingBlock ) ;
318312
@@ -330,8 +324,6 @@ describe("Update block cases", () => {
330324 } ) ;
331325
332326 it ( "Update content and children" , async ( ) => {
333- await waitForEditor ( ) ;
334-
335327 const existingBlock = editor . document [ 0 ] ;
336328 editor . insertBlocks ( [ singleBlockWithChildren ] , existingBlock ) ;
337329
0 commit comments