@@ -283,8 +283,6 @@ describe("Insert, Update, & Delete Blocks", () => {
283
283
284
284
describe ( "Update block cases" , ( ) => {
285
285
it ( "Update type only" , async ( ) => {
286
- await waitForEditor ( ) ;
287
-
288
286
const existingBlock = editor . document [ 0 ] ;
289
287
editor . insertBlocks ( [ singleBlockWithChildren ] , existingBlock ) ;
290
288
@@ -297,8 +295,6 @@ describe("Update block cases", () => {
297
295
} ) ;
298
296
299
297
it ( "Update content only" , async ( ) => {
300
- await waitForEditor ( ) ;
301
-
302
298
const existingBlock = editor . document [ 0 ] ;
303
299
editor . insertBlocks ( [ singleBlockWithChildren ] , existingBlock ) ;
304
300
@@ -311,8 +307,6 @@ describe("Update block cases", () => {
311
307
} ) ;
312
308
313
309
it ( "Update children only" , async ( ) => {
314
- await waitForEditor ( ) ;
315
-
316
310
const existingBlock = editor . document [ 0 ] ;
317
311
editor . insertBlocks ( [ singleBlockWithChildren ] , existingBlock ) ;
318
312
@@ -330,8 +324,6 @@ describe("Update block cases", () => {
330
324
} ) ;
331
325
332
326
it ( "Update content and children" , async ( ) => {
333
- await waitForEditor ( ) ;
334
-
335
327
const existingBlock = editor . document [ 0 ] ;
336
328
editor . insertBlocks ( [ singleBlockWithChildren ] , existingBlock ) ;
337
329
0 commit comments