8
0
Просмотр исходного кода

Moved bender tag at the top of file.

Oskar Wrobel 9 лет назад
Родитель
Сommit
b0ae2d21d5

+ 2 - 2
packages/ckeditor5-link/tests/findlinkrange.js

@@ -3,14 +3,14 @@
  * For licensing, see LICENSE.md.
  */
 
+/* bender-tags: link */
+
 import findLinkRange from '/ckeditor5/link/findlinkrange.js';
 import Document from '/ckeditor5/engine/model/document.js';
 import Range from '/ckeditor5/engine/model/range.js';
 import Position from '/ckeditor5/engine/model/position.js';
 import { setData } from '/tests/engine/_utils/model.js';
 
-/* bender-tags: link */
-
 describe( 'findLinkRange', () => {
 	let document, root;
 

+ 1 - 1
packages/ckeditor5-link/tests/link.js

@@ -4,7 +4,7 @@
  */
 
 /* globals document */
-/* bender-tags: link */
+/* bender-tags: link, browser-only */
 
 import ClassicTestEditor from '/tests/core/_utils/classictesteditor.js';
 import testUtils from '/tests/core/_utils/utils.js';

+ 2 - 2
packages/ckeditor5-link/tests/linkcommand.js

@@ -3,12 +3,12 @@
  * For licensing, see LICENSE.md.
  */
 
+/* bender-tags: link */
+
 import ModelTestEditor from '/tests/core/_utils/modeltesteditor.js';
 import LinkCommand from '/ckeditor5/link/linkcommand.js';
 import { setData, getData } from '/tests/engine/_utils/model.js';
 
-/* bender-tags: link */
-
 describe( 'LinkCommand', () => {
 	let editor, document, command;
 

+ 2 - 2
packages/ckeditor5-link/tests/linkengine.js

@@ -3,6 +3,8 @@
  * For licensing, see LICENSE.md.
  */
 
+/* bender-tags: link */
+
 import LinkEngine from '/ckeditor5/link/linkengine.js';
 import LinkCommand from '/ckeditor5/link/linkcommand.js';
 import UnlinkCommand from '/ckeditor5/link/unlinkcommand.js';
@@ -10,8 +12,6 @@ import VirtualTestEditor from '/tests/core/_utils/virtualtesteditor.js';
 import { getData as getModelData, setData as setModelData } from '/tests/engine/_utils/model.js';
 import { getData as getViewData } from '/tests/engine/_utils/view.js';
 
-/* bender-tags: link */
-
 describe( 'LinkEngine', () => {
 	let editor, doc;
 

+ 2 - 2
packages/ckeditor5-link/tests/unlinkcommand.js

@@ -3,12 +3,12 @@
  * For licensing, see LICENSE.md.
  */
 
+/* bender-tags: link */
+
 import ModelTestEditor from '/tests/core/_utils/modeltesteditor.js';
 import UnlinkCommand from '/ckeditor5/link/unlinkcommand.js';
 import { setData, getData } from '/tests/engine/_utils/model.js';
 
-/* bender-tags: link */
-
 describe( 'UnlinkCommand', () => {
 	let editor, document, command;