mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-30 19:27:48 +08:00
15 lines
528 B
JavaScript
15 lines
528 B
JavaScript
![]() |
/**
|
||
|
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
||
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
||
|
*/
|
||
|
|
||
|
import BlockQuote from '../src/blockquote.js';
|
||
|
import BlockQuoteEditing from '../src/blockquoteediting.js';
|
||
|
import BlockQuoteUI from '../src/blockquoteui.js';
|
||
|
|
||
|
describe( 'BlockQuote', () => {
|
||
|
it( 'requires BlockQuoteEditing and BlockQuoteUI', () => {
|
||
|
expect( BlockQuote.requires ).to.deep.equal( [ BlockQuoteEditing, BlockQuoteUI ] );
|
||
|
} );
|
||
|
} );
|