| 123456789101112131415 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- import count from '../src/count';
- describe( 'utils', () => {
- describe( 'count', () => {
- it( 'should returns number of editable items', () => {
- const totalNumber = count( [ 1, 2, 3, 4, 5 ] );
- expect( totalNumber ).to.equal( 5 );
- } );
- } );
- } );
|