From c79eae8de3cecde814f5d32151e8cda46787c15d Mon Sep 17 00:00:00 2001 From: Kamil Piechaczek Date: Wed, 12 Dec 2018 09:34:07 +0100 Subject: [PATCH] Code style in tests. --- tests/manual/ckeditor-cjs-version.js | 3 +++ tests/manual/ckeditor.js | 2 ++ 2 files changed, 5 insertions(+) diff --git a/tests/manual/ckeditor-cjs-version.js b/tests/manual/ckeditor-cjs-version.js index 9176d5f..fc4854f 100644 --- a/tests/manual/ckeditor-cjs-version.js +++ b/tests/manual/ckeditor-cjs-version.js @@ -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' ) ) diff --git a/tests/manual/ckeditor.js b/tests/manual/ckeditor.js index bd83687..3f98169 100644 --- a/tests/manual/ckeditor.js +++ b/tests/manual/ckeditor.js @@ -3,6 +3,8 @@ * For licensing, see LICENSE.md. */ +/* globals window, document, console */ + import ClassicEditor from '../../build/ckeditor'; ClassicEditor.create( document.querySelector( '#editor' ) )