• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ckeditor / ckeditor5-inspector / 549

pending completion
549

push

travis-ci-com

web-flow
Bump webpack from 5.75.0 to 5.76.0

Bumps [webpack](https://github.com/webpack/webpack) from 5.75.0 to 5.76.0.
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](https://github.com/webpack/webpack/compare/v5.75.0...v5.76.0)

---
updated-dependencies:
- dependency-name: webpack
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>

521 of 560 branches covered (93.04%)

Branch coverage included in aggregate %.

1123 of 1165 relevant lines covered (96.39%)

113.25 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

91.67
/src/components/tree/utils.js
1
/**
2
 * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
 * For licensing, see LICENSE.md.
4
 */
5

6
import React from 'react';
7

8
import TreeElement from './treeelement';
9
import TreeTextNode from './treetextnode';
10
import TreeComment from './treecomment';
11

12
export function renderTreeNodeFromDefinition( definition, index, globalTreeProps ) {
13
        if ( definition.type === 'element' ) {
186✔
14
                return <TreeElement key={index} definition={definition} globalTreeProps={globalTreeProps} />;
165✔
15
        } else if ( definition.type === 'text' ) {
21✔
16
                return <TreeTextNode key={index} definition={definition} globalTreeProps={globalTreeProps} />;
17✔
17
        } else if ( definition.type === 'comment' ) {
4!
18
                return <TreeComment key={index} definition={definition} />;
4✔
19
        }
20
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc