浏览代码

Get rid of cloudservicesmock.js.

Maciej Bukowski 8 年之前
父节点
当前提交
82de55c395
共有 1 个文件被更改,包括 0 次插入26 次删除
  1. 0 26
      packages/ckeditor5-cloud-services/tests/_utils/cloudservicesmock.js

+ 0 - 26
packages/ckeditor5-cloud-services/tests/_utils/cloudservicesmock.js

@@ -1,26 +0,0 @@
-/**
- * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
-
-import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
-
-/**
- * Mocked CloudServices that
- */
-export default class CloudServicesMock extends Plugin {
-	init() {
-		const editor = this.editor;
-		const config = editor.config;
-
-		const options = config.get( 'cloudServices' );
-
-		for ( const optionName in options ) {
-			this[ optionName ] = options[ optionName ];
-		}
-
-		this.token = {
-			value: 'token'
-		};
-	}
-}