Skip to content

Commit

Permalink
Tests: Stabilized a manual test.
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Sep 23, 2024
1 parent f22898c commit 72a96f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/ckeditor5-theme-lark/tests/manual/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ class TextView extends View {
constructor() {
super();

this.element = document.createTextNode( 'Sample text' );
this.element = document.createElement( 'span' );
this.element.innerHTML = 'Sample text';
}
}

Expand Down

0 comments on commit 72a96f0

Please sign in to comment.