| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /**
- * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- 'use strict';
- const modules = bender.amd.require( 'ckeditor', 'ckeditor-core' );
- describe( 'getPluginPath()', () => {
- it( 'should return a proper path', () => {
- const CKEDITOR = modules.ckeditor;
- const basePath = CKEDITOR.basePath;
- const path = CKEDITOR.getPluginPath( 'test' );
- if ( CKEDITOR.isDev ) {
- expect( path ).to.equal( basePath + 'node_modules/ckeditor-plugin-test/src/' );
- } else {
- expect( path ).to.equal( basePath + 'plugins/test/' );
- }
- } );
- it( '(the production version) should work even when in dev', () => {
- const CKEDITOR = modules.ckeditor;
- const core = modules[ 'ckeditor-core' ];
- // To be able to run this test on both dev and production code, we need to override getPluginPath with the
- // core version of it and restore it after testing.
- const originalGetPluginPath = CKEDITOR.getPluginPath;
- CKEDITOR.getPluginPath = core.getPluginPath;
- // This test is good for both the development and production codes.
- const basePath = CKEDITOR.basePath;
- const path = CKEDITOR.getPluginPath( 'test' );
- // Revert the override before assertions or it will not do it in case of errors.
- CKEDITOR.getPluginPath = originalGetPluginPath;
- expect( path ).to.equal( basePath + 'plugins/test/' );
- } );
- } );
- describe( 'isDebug', () => {
- it( 'is a boolean', () => {
- const CKEDITOR = modules.ckeditor;
- expect( CKEDITOR.isDebug ).to.be.a( 'boolean' );
- } );
- } );
|