linkelement.js 424 B

12345678910111213
  1. /**
  2. * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. import LinkElement from '../src/linkelement';
  6. import AttributeElement from '@ckeditor/ckeditor5-engine/src/view/attributeelement';
  7. describe( 'LinkElement', () => {
  8. it( 'should extend AttributeElement', () => {
  9. expect( new LinkElement( 'a' ) ).to.instanceof( AttributeElement );
  10. } );
  11. } );