Browse Source

Tests: Add 'Clipboard' plugin to normalization tests.

Krzysztof Krztoń 7 years ago
parent
commit
b17d30af11
1 changed files with 2 additions and 1 deletions
  1. 2 1
      packages/ckeditor5-paste-from-office/tests/data/normalization.js

+ 2 - 1
packages/ckeditor5-paste-from-office/tests/data/normalization.js

@@ -3,6 +3,7 @@
  * For licensing, see LICENSE.md.
  */
 
+import Clipboard from '@ckeditor/ckeditor5-clipboard/src/clipboard';
 import PasteFromOffice from '../../src/pastefromoffice';
 
 import { generateTests } from '../_utils/utils';
@@ -10,7 +11,7 @@ import { generateTests } from '../_utils/utils';
 const browsers = [ 'chrome', 'firefox', 'safari', 'edge' ];
 
 const editorConfig = {
-	plugins: [ PasteFromOffice ]
+	plugins: [ Clipboard, PasteFromOffice ]
 };
 
 generateTests( {