Skip to content

Commit

Permalink
Code style in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Piechaczek committed Dec 12, 2018
1 parent f36b183 commit c79eae8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/manual/ckeditor-cjs-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* For licensing, see LICENSE.md.
*/

/* eslint-env commonjs */
/* globals window, document, console */

const ClassicEditor = require( '../../build/ckeditor' );

ClassicEditor.create( document.querySelector( '#editor' ) )
Expand Down
2 changes: 2 additions & 0 deletions tests/manual/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* For licensing, see LICENSE.md.
*/

/* globals window, document, console */

import ClassicEditor from '../../build/ckeditor';

ClassicEditor.create( document.querySelector( '#editor' ) )
Expand Down

0 comments on commit c79eae8

Please sign in to comment.