Skip to content

Commit 71cead4

Browse files
chore: flaky test and implemented comments feedback (#1481)
1 parent 0def46d commit 71cead4

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

packages/core/src/editor/BlockNoteEditor.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1426,6 +1426,11 @@ export class BlockNoteEditor<
14261426
);
14271427
}
14281428

1429+
// `forceSelectionVisible` determines whether the editor selection is shows
1430+
// even when the editor is not focused. This is useful for e.g. creating new
1431+
// links, so the user still sees the affected content when an input field is
1432+
// focused.
1433+
// TODO: Reconsider naming?
14291434
public getForceSelectionVisible() {
14301435
return this.showSelectionPlugin.getEnabled();
14311436
}

packages/react/src/components/Comments/FloatingComposerController.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ export const FloatingComposerController = <
3333

3434
const comments = editor.comments;
3535
useEffect(() => {
36-
comments.onUpdate((state) =>
36+
const offUpdate = comments.onUpdate((state) =>
3737
editor.setForceSelectionVisible(state.pendingComment)
3838
);
39+
40+
return () => offUpdate();
3941
}, [comments, editor]);
4042

4143
const state = useUIPluginState(comments.onUpdate.bind(comments));

tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"build": "tsc",
77
"lint": "eslint src --max-warnings 0",
8-
"playwright": "npx playwright test",
8+
"playwright": "npx playwright test --ui",
99
"playwright:ui": "npx playwright test --ui",
1010
"test:updateSnaps": "docker run --rm -e RUN_IN_DOCKER=true --network host -v $(pwd)/..:/work/ -w /work/tests -it mcr.microsoft.com/playwright:v1.49.1-noble npx playwright test -u",
1111
"test-ct": "playwright test -c playwright-ct.config.ts --headed",

tests/src/end-to-end/theming/theming.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ test.describe("Check Dark Theme is Automatically Applied", () => {
4343
await page.waitForSelector(LINK_BUTTON_SELECTOR);
4444
await page.click(LINK_BUTTON_SELECTOR);
4545

46+
await page.waitForTimeout(500);
4647
await page.keyboard.type("link");
4748
await page.keyboard.press("Enter");
4849
await page.keyboard.press("ArrowLeft");
4950

5051
await page.waitForTimeout(500);
51-
// expect(await page.screenshot()).toMatchSnapshot("dark-link-toolbar.png");
52-
expect(Date.now() < new Date('2025-03-04').getTime()).toBeTruthy();
52+
expect(await page.screenshot()).toMatchSnapshot("dark-link-toolbar.png");
5353
});
5454
test("Should show dark slash menu", async ({ page }) => {
5555
await focusOnEditor(page);
Loading

0 commit comments

Comments
 (0)