Skip to content

Commit

Permalink
Tests 100% done
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivaylo Pavlov authored and Ivaylo Pavlov committed Aug 21, 2024
1 parent 11e840e commit 213b2da
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => {
Expand All @@ -175,7 +175,7 @@ describe('LexicalTableNode tests', () => {
expect(testEnv.innerHTML).toBe(`<p><br></p>`);
});

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(() => {
Expand All @@ -198,7 +198,7 @@ describe('LexicalTableNode tests', () => {
expect(testEnv.innerHTML).toBe(`<p><br></p>`);
});

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(() => {
Expand All @@ -221,7 +221,7 @@ describe('LexicalTableNode tests', () => {
expect(testEnv.innerHTML).toBe(`<p><br></p>`);
});

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(() => {
Expand Down

0 comments on commit 213b2da

Please sign in to comment.