Skip to content

Commit

Permalink
E2E Tests: Make attributes and innerblocks optional in insertBlock (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Petter Walbø Johnsgård authored Oct 13, 2022
1 parent 074bafd commit db3b647
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/e2e-test-utils-playwright/src/editor/insert-block.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import type { Editor } from './index';

interface BlockRepresentation {
name: string;
attributes: Object;
innerBlocks: BlockRepresentation[];
attributes?: Object;
innerBlocks?: BlockRepresentation[];
}

/**
Expand Down

0 comments on commit db3b647

Please sign in to comment.