Skip to content

Commit

Permalink
Tests: Added initial data to editor in the list properties manual test.
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Dec 16, 2021
1 parent 4303f22 commit d3bf610
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages/ckeditor5-list/tests/manual/list-properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,20 @@ import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';

const config = {
initialData: `
<h3>Ordered list</h3>
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
<h3>Unordered list</h3>
<ul>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ul>
`,
plugins: [
Essentials,
Bold,
Expand Down

0 comments on commit d3bf610

Please sign in to comment.