Skip to content

Commit

Permalink
test: fix the test for change - unbullet single item not whole list
Browse files Browse the repository at this point in the history
  • Loading branch information
umaranis committed May 6, 2024
1 parent d5c42d1 commit 006de58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions demos/playground/src/__tests__/e2e/List.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1627,10 +1627,10 @@ test.describe('Nested List', () => {
);
await page.pause();
await assertSelection(page, {
anchorOffset: 0,
anchorPath: [2],
focusOffset: 0,
focusPath: [2],
anchorOffset: 1,
anchorPath: [1, 0],
focusOffset: 1,
focusPath: [1, 0],
});
});
});

0 comments on commit 006de58

Please sign in to comment.