Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

i/6536: Tests: Added the select all icon to the "iconset" manual test #281

Merged
merged 1 commit into from
Apr 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"@ckeditor/ckeditor5-paragraph": "^18.0.0",
"@ckeditor/ckeditor5-remove-format": "^18.0.0",
"@ckeditor/ckeditor5-restricted-editing": "^18.0.0",
"@ckeditor/ckeditor5-select-all": "^0.0.1",
"@ckeditor/ckeditor5-special-characters": "^18.0.0",
"@ckeditor/ckeditor5-undo": "^18.0.0",
"@ckeditor/ckeditor5-utils": "^18.0.0",
Expand Down
5 changes: 5 additions & 0 deletions tests/manual/iconset.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ import removeFormat from '@ckeditor/ckeditor5-remove-format/theme/icons/remove-f
import contentLock from '@ckeditor/ckeditor5-restricted-editing/theme/icons/contentlock.svg';
import contentUnlock from '@ckeditor/ckeditor5-restricted-editing/theme/icons/contentunlock.svg';

import selectAll from '@ckeditor/ckeditor5-select-all/theme/icons/select-all.svg';

import specialCharacters from '@ckeditor/ckeditor5-special-characters/theme/icons/specialcharacters.svg';

import table from '@ckeditor/ckeditor5-table/theme/icons/table.svg';
Expand Down Expand Up @@ -144,6 +146,9 @@ const icons = {
// restricted-editing
contentLock, contentUnlock,

// select-all
selectAll,

// special-characters
specialCharacters,

Expand Down