1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

Lexical: Updated tests for node changes

This commit is contained in:
Dan Brown
2024-12-04 20:03:05 +00:00
parent 9fdd100f2d
commit d00cf6e1ba
17 changed files with 301 additions and 380 deletions

View File

@ -176,7 +176,7 @@ describe('HTML', () => {
});
expect(html).toBe(
'<p style="text-align: center;">Hello world!</p>',
'<p class="align-center">Hello world!</p>',
);
});
@ -206,7 +206,7 @@ describe('HTML', () => {
});
expect(html).toBe(
'<p style="text-align: center;">Hello world!</p>',
'<p class="align-center">Hello world!</p>',
);
});
});