1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-15 11:01:52 +03:00

Missing semicolon

This commit is contained in:
BobVul
2020-02-04 10:38:43 +11:00
parent 9cf53aa9d8
commit 1df6837649

View File

@ -48,5 +48,5 @@ describe('editor/serialize', function() {
const model = new EditorModel([pc.plain('\\*hello\\* world')]); const model = new EditorModel([pc.plain('\\*hello\\* world')]);
const html = htmlSerializeIfNeeded(model, {}); const html = htmlSerializeIfNeeded(model, {});
expect(html).toBe('*hello* world'); expect(html).toBe('*hello* world');
}) });
}); });