linkelement.js 424 B

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