From 213b2dac74af93057de317e8a4abd42f71919ee5 Mon Sep 17 00:00:00 2001 From: Ivaylo Pavlov Date: Wed, 21 Aug 2024 12:24:49 +0300 Subject: [PATCH] Tests 100% done --- .../src/__tests__/unit/LexicalTableNode.test.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/lexical-table/src/__tests__/unit/LexicalTableNode.test.tsx b/packages/lexical-table/src/__tests__/unit/LexicalTableNode.test.tsx index eec49fe38f5a..a560884f8d67 100644 --- a/packages/lexical-table/src/__tests__/unit/LexicalTableNode.test.tsx +++ b/packages/lexical-table/src/__tests__/unit/LexicalTableNode.test.tsx @@ -150,7 +150,7 @@ describe('LexicalTableNode tests', () => { ); }); - test('Cut with table in the middle of a range selection ', async () => { + test('Cut table in the middle of a range selection', async () => { const {editor} = testEnv; await editor.update(() => { @@ -175,7 +175,7 @@ describe('LexicalTableNode tests', () => { expect(testEnv.innerHTML).toBe(`


`); }); - test('Cut with table as last node in range selection ', async () => { + test('Cut table as last node in range selection ', async () => { const {editor} = testEnv; await editor.update(() => { @@ -198,7 +198,7 @@ describe('LexicalTableNode tests', () => { expect(testEnv.innerHTML).toBe(`


`); }); - test('Cut with table as first node in range selection ', async () => { + test('Cut table as first node in range selection ', async () => { const {editor} = testEnv; await editor.update(() => { @@ -221,7 +221,7 @@ describe('LexicalTableNode tests', () => { expect(testEnv.innerHTML).toBe(`


`); }); - test('Cut whole table selected only, should remove it', async () => { + test('Cut table is whole selection, should remove it', async () => { const {editor} = testEnv; await editor.update(() => {