diff --git a/packages/e2e-test-utils-playwright/src/editor/insert-block.ts b/packages/e2e-test-utils-playwright/src/editor/insert-block.ts index 3cbd3067490e32..96138258f98135 100644 --- a/packages/e2e-test-utils-playwright/src/editor/insert-block.ts +++ b/packages/e2e-test-utils-playwright/src/editor/insert-block.ts @@ -5,8 +5,8 @@ import type { Editor } from './index'; interface BlockRepresentation { name: string; - attributes: Object; - innerBlocks: BlockRepresentation[]; + attributes?: Object; + innerBlocks?: BlockRepresentation[]; } /**