NORTHSET

Proof-of-Pass Receipt — M-020

CONTRIBUTOR SELF-RUN — NOT MAINTAINER VERIFICATION

Receipt ID
M-020
Run start
2026-07-14T00:54:12.419Z
Run finish
2026-07-14T01:25:30.968Z

Project

KaotoIO/kaoto

Work

DataMapper: Abstract wrapper fields need unique names to support multiple refs to the same abstract element · PR #3478

Verification execution

runtime: northset-oss executor v1
human operator: aeziz

Code

base
caf30cc7c6123728c8c05d1f36e9cd8a67f23f0e
recorded patch commit
ffc3e052480163e7338e3164008c6a7a26a77605
declared metadata; not execution-bound
patch diff SHA-256
sha256:df4e811a58411b60c9f1b8362e342138080730992f78ff08c7e60ae0bf61d025
bound to executed patch bytes

Environment

image reference
node@sha256:40ad9f3064e67d6860b4bc3fe1880b2953934fd6320ada990e45fe0efa6badd7
repository digest
node@sha256:40ad9f3064e67d6860b4bc3fe1880b2953934fd6320ada990e45fe0efa6badd7
network
phaseA:bridge,phaseB:none

Declared checks

Execution summary
4/4 declared commands returned exit 0 in the recorded environment

  1. corepack yarn workspace @kaoto/kaoto test src/services/document/xml-schema/xml-schema-document.service.abstract-repeated-ref.test.ts packages/ui/src/services/document/xml-schema/xml-schema-document.service.abstract-repeated-ref.test.ts --configLoader runner

    exit 0 · 19s

  2. corepack yarn workspace @kaoto/kaoto lint

    exit 0 · 1m09s

  3. corepack yarn workspace @kaoto/kaoto lint:style

    exit 0 · 7.9s

  4. corepack yarn workspace @kaoto/kaoto test --configLoader runner --maxWorkers 4

    exit 0 · 23m51s

unclassified executor time (derived residual) 5m50s

run wall (derived from recorded timestamps) 31m18s

PASS — 4/4 declared commands

Every command listed returned exit 0 in the declared environment. Only the listed commands are in scope. Unlisted test, lint, typecheck, build, coverage, compiler, full-suite, and CI gates are not implied or recorded.

Public scope interpretation

The focused regression validates parsed document structure and does not exercise the full browser UI.

Record details

payment
none · not merge-contingent
redactions
32 email, 104 jwt
Bundle contents digest
sha256:ee7f9a6f1ce091c8dd5d34edd000b4dabc5e403c4ce6c28432090a9db61df124
Signed asset SHA-256
sha256:7d9687ebc8ad43c74d382e5eaa3d10ce77adafda9e70bc61792e7dda72dcb78c
Signed provenance recorded
verified 2026-07-14T14:21:48Z

NOT INCLUDED

  • Does not prove code quality
  • Does not prove security
  • The focused regression validates parsed document structure and does not exercise the full browser UI.
  • Contributor self-run record of Northset's own contribution; not the maintainer's verification.

Signed bundle

Download signed bundle

Verify this receipt

gh attestation verify run-record-M-020-ee7f9a6f1ce0.tar.gz --repo northset-oss/verification-pilot --signer-workflow northset-oss/verification-pilot/.github/workflows/attest-bundle.yml

Attestation confirms that Northset's signing workflow produced this exact bundle. The signer does not witness the recorded run, and verification does not turn it into maintainer verification.

QR → receipt page
Northset contributed this fix and ran its declared checks. Contributor self-run. Not maintainer verification.

Evidence of what ran — not a verdict that the code is good.

SELF-FUNDED FIELD-TESTING.

Committed patch.diff
diff --git a/packages/ui/src/services/document/xml-schema/xml-schema-document.service.abstract-repeated-ref.test.ts b/packages/ui/src/services/document/xml-schema/xml-schema-document.service.abstract-repeated-ref.test.ts
new file mode 100644
index 0000000000000000000000000000000000000000..883f0b5086a92fa7351a75b9b06e5674794a33bd
--- /dev/null
+++ b/packages/ui/src/services/document/xml-schema/xml-schema-document.service.abstract-repeated-ref.test.ts
@@ -0,0 +1,47 @@
+import {
+  BODY_DOCUMENT_ID,
+  DocumentDefinition,
+  DocumentDefinitionType,
+  DocumentType,
+} from '../../../models/datamapper/document';
+import { XmlSchemaDocument } from './xml-schema-document.model';
+import { XmlSchemaDocumentService } from './xml-schema-document.service';
+
+describe('XmlSchemaDocumentService / repeated abstract element refs', () => {
+  it('should create a unique wrapper with its own cardinality for each abstract element ref', () => {
+    const xsd = `<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
+           xmlns:tns="http://example.com/vehicles"
+           targetNamespace="http://example.com/vehicles"
+           elementFormDefault="qualified">
+  <xs:element name="Root">
+    <xs:complexType>
+      <xs:sequence>
+        <xs:element ref="tns:AbstractVehicle"/>
+        <xs:element ref="tns:AbstractVehicle" maxOccurs="unbounded"/>
+      </xs:sequence>
+    </xs:complexType>
+  </xs:element>
+  <xs:element name="AbstractVehicle" type="xs:string" abstract="true"/>
+  <xs:element name="Car" type="xs:string" substitutionGroup="tns:AbstractVehicle"/>
+</xs:schema>`;
+    const definition = new DocumentDefinition(
+      DocumentType.SOURCE_BODY,
+      DocumentDefinitionType.XML_SCHEMA,
+      BODY_DOCUMENT_ID,
+      { 'vehicles.xsd': xsd },
+      { namespaceUri: 'http://example.com/vehicles', name: 'Root' },
+    );
+
+    const result = XmlSchemaDocumentService.createXmlSchemaDocument(definition);
+
+    expect(result.validationStatus).toBe('success');
+    const document = result.document as XmlSchemaDocument;
+    const abstractFields = document.fields[0].fields.filter((field) => field.wrapperKind === 'abstract');
+    expect(abstractFields).toHaveLength(2);
+    expect(new Set(abstractFields.map((field) => field.name)).size).toBe(2);
+    expect(abstractFields.map((field) => field.displayName)).toEqual(['AbstractVehicle', 'AbstractVehicle']);
+    expect(abstractFields.map((field) => field.minOccurs)).toEqual([1, 1]);
+    expect(abstractFields.map((field) => field.maxOccurs)).toEqual([1, 'unbounded']);
+  });
+});
diff --git a/packages/ui/src/services/document/xml-schema/xml-schema-document.service.ts b/packages/ui/src/services/document/xml-schema/xml-schema-document.service.ts
index 0cdb8c2c1a131955267a673e7099b32ae7ddea4f..8331b779bae3e1b3bc1307ed634ac8d7f667ab2c 100644
--- a/packages/ui/src/services/document/xml-schema/xml-schema-document.service.ts
+++ b/packages/ui/src/services/document/xml-schema/xml-schema-document.service.ts
@@ -532,8 +532,8 @@ export class XmlSchemaDocumentService {
 
   /**
    * Populates an XML element as an {@link XmlSchemaField} into the given fields array.
-   * Skips elements that already exist in fields (by name, namespace, and isAttribute). Resolves element references
-   * and delegates to schema type handling to populate child fields and type metadata.
+   * Skips concrete elements that already exist in fields (by name, namespace, and isAttribute). Resolves element
+   * references and delegates to schema type handling to populate child fields and type metadata.
    *
    * Per the XSD spec, `abstract` is only valid on global element declarations — element
    * references (`<xs:element ref="..."/>`) cannot carry it. Therefore abstract detection
@@ -552,13 +552,13 @@ export class XmlSchemaDocumentService {
     const namespaceURI = resolvedElement.getWireName()!.getNamespaceURI();
     const ownerDoc = ('ownerDocument' in parent ? parent.ownerDocument : parent) as XmlSchemaDocument;
 
-    const existing = fields.find((f) => f.name === name && !f.isAttribute && f.namespaceURI === namespaceURI);
-    if (existing) {
+    if (resolvedElement.isAbstract()) {
+      XmlSchemaDocumentService.populateAbstractElement(parent, fields, element, resolvedElement);
       return;
     }
 
-    if (resolvedElement.isAbstract()) {
-      XmlSchemaDocumentService.populateAbstractElement(parent, fields, element, resolvedElement);
+    const existing = fields.find((f) => f.name === name && !f.isAttribute && f.namespaceURI === namespaceURI);
+    if (existing) {
       return;
     }
 
@@ -958,9 +958,9 @@ export class XmlSchemaDocumentService {
    * Creates an abstract element wrapper {@link XmlSchemaField} with {@link XmlSchemaField.wrapperKind}
    * set to `'abstract'`, and populates its children from the concrete substitution group members.
    *
-   * Unlike {@link populateChoice} which uses the synthetic name `__choice__`, the abstract wrapper
-   * uses the actual element name since abstract elements ARE real XML elements — they just cannot
-   * be instantiated directly. The `{abstract:N}` path index is derived at runtime by
+   * Abstract wrappers use the actual element name when it is unique among siblings and add a stable
+   * sibling-position suffix when it is not. The resolved element name remains the display name.
+   * The `{abstract:N}` path index is derived at runtime by
    * {@link SchemaPathService.getAbstractSiblingIndex}, analogous to `{choice:N}`.
    *
    * @param parent - The parent document or field that owns the fields array
@@ -975,16 +975,23 @@ export class XmlSchemaDocumentService {
     resolvedElement: XmlSchemaElement,
   ) {
     const ownerDoc = ('ownerDocument' in parent ? parent.ownerDocument : parent) as XmlSchemaDocument;
-    const name = resolvedElement.getWireName()!.getLocalPart()!;
+    const displayName = resolvedElement.getWireName()!.getLocalPart()!;
+    const namespaceURI = resolvedElement.getWireName()!.getNamespaceURI();
+    let name = displayName;
+    let siblingIndex = fields.length;
+    while (fields.some((field) => field.name === name && !field.isAttribute && field.namespaceURI === namespaceURI)) {
+      name = `${displayName}-${siblingIndex}`;
+      siblingIndex++;
+    }
     const abstractField = new XmlSchemaField(parent, name, false);
     abstractField.wrapperKind = 'abstract';
-    abstractField.namespaceURI = resolvedElement.getWireName()!.getNamespaceURI();
+    abstractField.namespaceURI = namespaceURI;
     abstractField.namespacePrefix = resolvedElement.getWireName()!.getPrefix();
     abstractField.minOccurs = element.getMinOccurs();
     abstractField.maxOccurs = element.getMaxOccurs();
     abstractField.minOccursExplicit = element.isMinOccursExplicit();
     abstractField.maxOccursExplicit = element.isMaxOccursExplicit();
-    abstractField.displayName = name;
+    abstractField.displayName = displayName;
     fields.push(abstractField);
     ownerDoc.totalFieldCount++;
 
Redacted stdout
=== cmd 1: corepack yarn workspace @kaoto/kaoto test src/services/document/xml-schema/xml-schema-document.service.abstract-repeated-ref.test.ts packages/ui/src/services/document/xml-schema/xml-schema-document.service.abstract-repeated-ref.test.ts --configLoader runner ===

 RUN  v4.1.8 /workspace/packages/ui

 ✓ src/services/document/xml-schema/xml-schema-document.service.abstract-repeated-ref.test.ts (1 test) 46ms

 Test Files  1 passed (1)
      Tests  1 passed (1)
   Start at  00:58:42
   Duration  15.65s (transform 11.24s, setup 350ms, import 14.21s, tests 46ms, environment 857ms)

=== cmd 2: corepack yarn workspace @kaoto/kaoto lint ===
=== cmd 3: corepack yarn workspace @kaoto/kaoto lint:style ===
=== cmd 4: corepack yarn workspace @kaoto/kaoto test --configLoader runner --maxWorkers 4 ===

 RUN  v4.1.8 /workspace/packages/ui

 ✓ src/services/datamapper-metadata.service.test.ts (76 tests) 95ms
 ✓ src/services/document/document-util.service.test.ts (80 tests) 1444ms
       ✓ should resolve collection type fragment  1074ms
 ✓ src/services/visualization/mapping-action.service.test.ts (99 tests) 1667ms
 ✓ src/services/mapping/mapping.service.test.ts (94 tests) 1702ms
 ✓ src/services/visualization/visualization.service.choice.test.ts (53 tests) 683ms
 ✓ src/services/mapping/mapping-serializer.service.test.ts (46 tests) 476ms
 ✓ src/services/document/xml-schema/xml-schema-document.service.test.ts (40 tests) 2705ms
     ✓ should parse camel-spring.xsd XML schema  1090ms
     ✓ should create XML schema document with routes as a root element  1070ms
 ✓ src/services/document/document.service.test.ts (57 tests) 254ms
 ✓ src/services/document/xml-schema/xml-schema-types.service.test.ts (78 tests) 648ms
 ✓ src/services/document/json-schema/json-schema-document.service.test.ts (44 tests) 531ms
 ✓ src/models/visualization/flows/citrus-test-visual-entity.test.ts (93 tests) 301ms
 ✓ src/services/xpath/syntaxtree/xpath-syntaxtree-cst-visitor.test.ts (84 tests) 47ms
 ✓ src/components/Document/actions/AttachSchema/AttachSchemaModal.test.tsx (28 tests) 3040ms
 ✓ src/services/document/field-override.service.test.ts (45 tests) 350ms
 ✓ src/services/visualization/mapping-links.service.test.ts (30 tests) 1324ms
       ✓ should generate mapping links for the cached type fragments field  377ms
 ✓ src/components/Document/TargetDocumentNode.test.tsx (42 tests) 1300ms
 ✓ src/components/Document/actions/FieldOverride/FieldOverrideModal.test.tsx (43 tests) 4246ms
 ✓ src/services/visualization/mapping-validation.service.test.ts (73 tests) 534ms
 ✓ src/services/xpath/xpath.service.test.ts (70 tests) 156ms
 ✓ src/models/camel/camel-route-resource.test.ts (97 tests | 2 todo) 85ms
 ✓ src/services/document/xml-schema/xml-schema-document-util.service.test.ts (68 tests) 315ms
 ✓ src/providers/datamapper.provider.test.tsx (37 tests) 457ms
 ✓ src/components/ExpansionPanels/ExpansionPanels.test.tsx (36 tests) 828ms
 ✓ src/services/visualization/visualization.service.test.ts (44 tests) 690ms
 ✓ src/components/Document/Parameters.test.tsx (19 tests) 1756ms
     ✓ should attach and detach a schema  441ms
 ✓ src/services/visualization/visualization.service.abstract.test.ts (36 tests) 462ms
 ✓ src/models/visualization/flows/support/camel-component-schema.service.test.ts (165 tests) 8237ms
 ✓ src/components/DataMapper/DataMapperLauncher.test.tsx (27 tests) 1894ms
 ✓ src/services/visualization/mapping-action.service.choice.test.ts (19 tests) 225ms
 ✓ src/services/document/json-schema/json-schema-analysis.service.test.ts (48 tests) 51ms
 ✓ src/services/document/xml-schema/xml-schema-document.service.schema-files.test.ts (26 tests) 253ms
 ✓ src/components/Visualization/Canvas/Form/fields/EndpointField/EndpointListField.test.tsx (23 tests) 3503ms
       ✓ should open modal when Add button is clicked  314ms
       ✓ should add endpoint when confirm button is clicked  600ms
       ✓ should show confirmation modal when renaming an endpoint  354ms
       ✓ should not show confirmation modal when update arbitrary properties  327ms
       ✓ should not update endpoint when rename is cancelled  308ms
 ✓ src/components/Document/actions/FieldContextMenu/useChoiceContextMenu.test.tsx (24 tests) 1295ms
 ✓ src/services/openapi-processing.service.test.ts (35 tests) 11ms
 ✓ src/services/mapping/xslt-item-handlers.test.ts (35 tests) 77ms
 ✓ src/xml-schema-ts/XmlSchemaCollection.test.ts (33 tests) 2703ms
     ✓ should parse camel-spring XML schema  622ms
       ✓ should return only user-defined schemas, excluding standard namespaces  395ms
       ✓ should include camel-spring schema in user schemas  453ms
       ✓ should exclude built-in XSD schema from user schemas  378ms
       ✓ should parse final="extension restriction" on complexType in camel-spring  633ms
 ✓ src/components/Document/SourceDocumentNode.test.tsx (27 tests) 610ms
 ✓ src/components/Visualization/Custom/Node/CustomNodeUtils.test.ts (28 tests) 293ms
stdout | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should serialize empty strings `''` as `undefined`
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:org.apache.camel.spi.TransactedPolicy" ignored in schema at path "#/properties/transactedPolicyRef"
unknown format "bean:org.apache.camel.spi.TransactedPolicy" ignored in schema at path "#/properties/transactedPolicyRef"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:org.apache.camel.ErrorHandlerFactory" ignored in schema at path "#/definitions/org.apache.camel.model.errorhandler.RefErrorHandlerDefinition/properties/ref"
unknown format "bean:org.apache.camel.ErrorHandlerFactory" ignored in schema at path "#/definitions/org.apache.camel.model.errorhandler.RefErrorHandlerDefinition/properties/ref"
unknown format "bean:org.apache.camel.spi.TransactedPolicy" ignored in schema at path "#/properties/transactedPolicyRef"
unknown format "bean:org.apache.camel.spi.TransactedPolicy" ignored in schema at path "#/properties/transactedPolicyRef"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "errorHandlerType" ignored in schema at path "#/anyOf/0"
unknown format "errorHandlerType" ignored in schema at path "#/anyOf/0"

stdout | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should serialize empty strings(with space characters) `' '` as `undefined`
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:org.apache.camel.spi.TransactedPolicy" ignored in schema at path "#/properties/transactedPolicyRef"
unknown format "bean:org.apache.camel.spi.TransactedPolicy" ignored in schema at path "#/properties/transactedPolicyRef"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:org.apache.camel.ErrorHandlerFactory" ignored in schema at path "#/definitions/org.apache.camel.model.errorhandler.RefErrorHandlerDefinition/properties/ref"
unknown format "bean:org.apache.camel.ErrorHandlerFactory" ignored in schema at path "#/definitions/org.apache.camel.model.errorhandler.RefErrorHandlerDefinition/properties/ref"
unknown format "bean:org.apache.camel.spi.TransactedPolicy" ignored in schema at path "#/properties/transactedPolicyRef"
unknown format "bean:org.apache.camel.spi.TransactedPolicy" ignored in schema at path "#/properties/transactedPolicyRef"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "errorHandlerType" ignored in schema at path "#/anyOf/0"
unknown format "errorHandlerType" ignored in schema at path "#/anyOf/0"

stdout | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should allow consumers to update the Camel Route ID
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:org.apache.camel.spi.TransactedPolicy" ignored in schema at path "#/properties/transactedPolicyRef"
unknown format "bean:org.apache.camel.spi.TransactedPolicy" ignored in schema at path "#/properties/transactedPolicyRef"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:org.apache.camel.ErrorHandlerFactory" ignored in schema at path "#/definitions/org.apache.camel.model.errorhandler.RefErrorHandlerDefinition/properties/ref"
unknown format "bean:org.apache.camel.ErrorHandlerFactory" ignored in schema at path "#/definitions/org.apache.camel.model.errorhandler.RefErrorHandlerDefinition/properties/ref"
unknown format "bean:org.apache.camel.spi.TransactedPolicy" ignored in schema at path "#/properties/transactedPolicyRef"
unknown format "bean:org.apache.camel.spi.TransactedPolicy" ignored in schema at path "#/properties/transactedPolicyRef"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/redeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.RedeliveryPolicyDefinition/properties/maximumRedeliveryDelay"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/redeliveryPolicyRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onRedeliveryRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onExceptionOccurredRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepareFailureRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/retryWhileRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/executorServiceRef"
unknown format "errorHandlerType" ignored in schema at path "#/anyOf/0"
unknown format "errorHandlerType" ignored in schema at path "#/anyOf/0"

 ✓ src/services/mapping/wrapper-auto-detection.service.test.ts (24 tests) 370ms
stdout | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should show the User-updated field under the modified tab > expression field
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"

 ✓ src/services/document/json-schema/json-schema-document-util.service.test.ts (43 tests) 15ms
stdout | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should show the User-updated field under the modified tab > dataformat field
unknown format "bean:java.security.Key" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/key"
unknown format "bean:java.security.Key" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/key"
unknown format "bean:java.security.spec.AlgorithmParameterSpec" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/algorithmParameterSpec"
unknown format "bean:java.security.spec.AlgorithmParameterSpec" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/algorithmParameterSpec"
unknown format "bean:net.sf.flatpack.ParserFactory" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.FlatpackDataFormat/properties/parserFactory"
unknown format "bean:net.sf.flatpack.ParserFactory" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.FlatpackDataFormat/properties/parserFactory"
unknown format "bean:ca.uhn.hl7v2.parser.Parser" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.HL7DataFormat/properties/parser"
unknown format "bean:ca.uhn.hl7v2.parser.Parser" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.HL7DataFormat/properties/parser"
unknown format "bean:org.apache.camel.component.jackson.SchemaResolver" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.JsonDataFormat/properties/schemaResolver"
unknown format "bean:org.apache.camel.component.jackson.SchemaResolver" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.JsonDataFormat/properties/schemaResolver"
unknown format "bean:java.security.KeyPair" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyPair"
unknown format "bean:java.security.KeyPair" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyPair"
unknown format "bean:javax.crypto.KeyGenerator" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyGenerator"
unknown format "bean:javax.crypto.KeyGenerator" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyGenerator"
unknown format "bean:org.apache.camel.dataformat.soap.name.ElementNameStrategy" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SoapDataFormat/properties/elementNameStrategy"
unknown format "bean:org.apache.camel.dataformat.soap.name.ElementNameStrategy" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SoapDataFormat/properties/elementNameStrategy"
unknown format "bean:com.prowidesoftware.swift.model.MxId" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readMessageId"
unknown format "bean:com.prowidesoftware.swift.model.MxId" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readMessageId"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxReadConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxReadConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxWriteConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/writeConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxWriteConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/writeConfig"
unknown format "binary" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/passPhraseByte"
unknown format "binary" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/passPhraseByte"
unknown format "bean:org.apache.camel.support.jsse.KeyStoreParameters" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/keyOrTrustStoreParameters"
unknown format "bean:org.apache.camel.support.jsse.KeyStoreParameters" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/keyOrTrustStoreParameters"
unknown format "dataFormatType" ignored in schema at path "#/anyOf/0"
unknown format "dataFormatType" ignored in schema at path "#/anyOf/0"

stdout | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should show the User-updated field under the modified tab > loadbalancer field
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "loadBalancerType" ignored in schema at path "#/anyOf/0"
unknown format "loadBalancerType" ignored in schema at path "#/anyOf/0"

stdout | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should show the Required field under the required tab > expression field
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"

 ✓ src/services/mapping/field-matching.service.test.ts (37 tests) 37ms
stdout | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should show the Required field under the required tab > dataformat field
unknown format "bean:java.security.Key" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/key"
unknown format "bean:java.security.Key" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/key"
unknown format "bean:java.security.spec.AlgorithmParameterSpec" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/algorithmParameterSpec"
unknown format "bean:java.security.spec.AlgorithmParameterSpec" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/algorithmParameterSpec"
unknown format "bean:net.sf.flatpack.ParserFactory" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.FlatpackDataFormat/properties/parserFactory"
unknown format "bean:net.sf.flatpack.ParserFactory" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.FlatpackDataFormat/properties/parserFactory"
unknown format "bean:ca.uhn.hl7v2.parser.Parser" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.HL7DataFormat/properties/parser"
unknown format "bean:ca.uhn.hl7v2.parser.Parser" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.HL7DataFormat/properties/parser"
unknown format "bean:org.apache.camel.component.jackson.SchemaResolver" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.JsonDataFormat/properties/schemaResolver"
unknown format "bean:org.apache.camel.component.jackson.SchemaResolver" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.JsonDataFormat/properties/schemaResolver"
unknown format "bean:java.security.KeyPair" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyPair"
unknown format "bean:java.security.KeyPair" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyPair"
unknown format "bean:javax.crypto.KeyGenerator" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyGenerator"
unknown format "bean:javax.crypto.KeyGenerator" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyGenerator"
unknown format "bean:org.apache.camel.dataformat.soap.name.ElementNameStrategy" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SoapDataFormat/properties/elementNameStrategy"
unknown format "bean:org.apache.camel.dataformat.soap.name.ElementNameStrategy" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SoapDataFormat/properties/elementNameStrategy"
unknown format "bean:com.prowidesoftware.swift.model.MxId" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readMessageId"
unknown format "bean:com.prowidesoftware.swift.model.MxId" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readMessageId"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxReadConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxReadConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxWriteConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/writeConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxWriteConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/writeConfig"
unknown format "binary" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/passPhraseByte"
unknown format "binary" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/passPhraseByte"
unknown format "bean:org.apache.camel.support.jsse.KeyStoreParameters" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/keyOrTrustStoreParameters"
unknown format "bean:org.apache.camel.support.jsse.KeyStoreParameters" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/keyOrTrustStoreParameters"
unknown format "dataFormatType" ignored in schema at path "#/anyOf/0"
unknown format "dataFormatType" ignored in schema at path "#/anyOf/0"

stdout | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should show the Required field under the required tab > loadbalancer field
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "loadBalancerType" ignored in schema at path "#/anyOf/0"
unknown format "loadBalancerType" ignored in schema at path "#/anyOf/0"

 ✓ src/components/Visualization/Canvas/Form/CanvasForm.test.tsx (16 tests) 13332ms
     ✓ should serialize empty strings `''` as `undefined`  732ms
     ✓ should serialize empty strings(with space characters) `' '` as `undefined`  584ms
     ✓ should allow consumers to update the Camel Route ID  369ms
       ✓ normal text field  713ms
       ✓ expression field  1039ms
       ✓ dataformat field  1225ms
       ✓ loadbalancer field  950ms
       ✓ normal text field  516ms
       ✓ expression field  874ms
       ✓ dataformat field  1905ms
       ✓ loadbalancer field  772ms
 ✓ src/serializers/xml/serializers/step-xml-serializer.test.ts (58 tests) 4847ms
     ✓ should serialize saga nested elements when compensation/completion are legacy object-shaped values  301ms
       ✓ uses kamelet component syntax when kamelet name is not in the Kamelet catalog  432ms
       ✓ uses fallback getUriStringFromParameters when component has no syntax but step has parameters  303ms
 ✓ src/components/ResizableSplitPanels/ResizableSplitPanels.test.tsx (23 tests) 468ms
 ✓ src/components/Visualization/Canvas/Form/fields/BeanField/BeanField.test.tsx (24 tests) 38199ms
       ✓ should render  3158ms
       ✓ should set the appropriate placeholder  424ms
       ✓ should clear the input when using the clear button  435ms
       ✓ should show the new bean modal when creating a new bean  1145ms
       ✓ should allow user to create a new bean  1460ms
       ✓ should refresh the bean list after creating a new bean  3004ms
       ✓ should not update the BeanField when closing the modal  2109ms
       ✓ should not allow to create a bean without a type  1668ms
       ✓ should appear in document export when bean is added  1225ms
       ✓ should render  501ms
       ✓ should set the appropriate placeholder  664ms
       ✓ should clear the input when using the clear button  587ms
       ✓ should show the new bean modal when creating a new bean  1999ms
       ✓ should create a bean reference without prefix  2012ms
       ✓ should refresh the bean list after creating a new bean  2687ms
       ✓ should not update the BeanField when closing the modal  1408ms
       ✓ should create prefixed bean reference when shouldPrefixBeanName=true  1422ms
       ✓ should create unprefixed bean reference when shouldPrefixBeanName=false  1572ms
       ✓ should display existing beans correctly in prefixed mode  1447ms
       ✓ should display existing beans correctly in unprefixed mode  2279ms
       ✓ should include default items in dropdown options  908ms
       ✓ should allow selection of default items  871ms
       ✓ should find beans to only show DataSource types  3474ms
       ✓ should show new bean modal when creating DataSource bean  1733ms
 ✓ src/pages/RestDslImport/useRestDslImportWizard.test.tsx (20 tests) 84ms
 ✓ src/services/document/choice-selection.service.test.ts (27 tests) 223ms
 ✓ src/models/datamapper/document-tree.test.ts (29 tests) 19ms
stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should return the viz node and set the initial path to `#`
Failed to fetch icon for webhook-source: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:233:24)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:537:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should return the viz node and set the initial path to `#`
Failed to fetch icon for delay-action: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.getVizNodesFromSteps (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:314:23)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:234:23)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:537:23

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should return the viz node and set the initial path to `#`
Failed to fetch icon for log-sink: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:235:22)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:537:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should use the path as the node id
Failed to fetch icon for webhook-source: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:233:24)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:544:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should use the path as the node id
Failed to fetch icon for delay-action: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.getVizNodesFromSteps (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:314:23)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:234:23)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:544:23

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should use the path as the node id
Failed to fetch icon for log-sink: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:235:22)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:544:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should use the uri as the node label
Failed to fetch icon for webhook-source: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:233:24)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:555:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should use the uri as the node label
Failed to fetch icon for delay-action: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.getVizNodesFromSteps (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:314:23)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:234:23)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:555:23

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should use the uri as the node label
Failed to fetch icon for log-sink: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:235:22)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:555:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should set the title to `Pipe`
Failed to fetch icon for webhook-source: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:233:24)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:561:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should set the title to `Pipe`
Failed to fetch icon for delay-action: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.getVizNodesFromSteps (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:314:23)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:234:23)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:561:23

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should set the title to `Pipe`
Failed to fetch icon for log-sink: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:235:22)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:561:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should get the titles from children nodes
Failed to fetch icon for webhook-source: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:233:24)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:567:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should get the titles from children nodes
Failed to fetch icon for delay-action: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.getVizNodesFromSteps (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:314:23)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:234:23)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:567:23

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should get the titles from children nodes
Failed to fetch icon for log-sink: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:235:22)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:567:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should populate the viz node chain with the steps
Failed to fetch icon for webhook-source: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:233:24)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:590:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should populate the viz node chain with the steps
Failed to fetch icon for delay-action: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.getVizNodesFromSteps (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:314:23)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:234:23)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:590:23

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should populate the viz node chain with the steps
Failed to fetch icon for log-sink: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:235:22)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:590:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should include all steps as children of the Pipe group
Failed to fetch icon for webhook-source: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:233:24)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:617:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should include all steps as children of the Pipe group
Failed to fetch icon for delay-action: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.getVizNodesFromSteps (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:314:23)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:234:23)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:617:23

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should include all steps as children of the Pipe group
Failed to fetch icon for log-sink: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:235:22)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:617:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should handle pipe with multiple steps
Failed to fetch icon for webhook-source: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:233:24)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:661:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should handle pipe with multiple steps
Failed to fetch icon for delay-action: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.getVizNodesFromSteps (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:314:23)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:234:23)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:661:23

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should handle pipe with multiple steps
Failed to fetch icon for log-sink: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:235:22)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:661:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should create placeholder nodes when step ref name is undefined
Failed to fetch icon for webhook-source: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:233:24)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:693:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

stdout | src/models/visualization/flows/pipe-visual-entity.test.ts > Pipe > toVizNode > should create placeholder nodes when step ref name is undefined
Failed to fetch icon for log-sink: TypeError: Cannot read properties of undefined (reading 'annotations')
    at NodeIconResolver.getKameletIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:324:31)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at NodeIconResolver.getIcon (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/node-icon-resolver.ts:280:27)
    at getIconRequest (/workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.ts:45:16)
    at async Promise.allSettled (index 0)
    at NodeEnrichmentService.enrichNodeFromCatalog (/workspace/packages/ui/src/models/visualization/flows/nodes/node-enrichment.service.ts:31:21)
    at PipeVisualEntity.getVizNodeFromStep (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:305:5)
    at PipeVisualEntity.toVizNode (/workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.ts:235:22)
    at /workspace/packages/ui/src/models/visualization/flows/pipe-visual-entity.test.ts:693:23
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:20

 ✓ src/models/visualization/flows/pipe-visual-entity.test.ts (64 tests) 29454ms
       ✓ should initialize with empty pipe object  2938ms
       ✓ should initialize with pipe that has metadata but no name  829ms
       ✓ should use existing metadata name as id  519ms
       ✓ should have an uuid  446ms
       ✓ should have a type  563ms
       ✓ should return the id  334ms
       ✓ should change the id  369ms
       ✓ should update pipe metadata name when setting id  322ms
       ✓ should return the root path  503ms
       ✓ should return empty string if no path is provided  424ms
       ✓ should return the id when path is root path  313ms
       ✓ should delegate to KameletSchemaService for step paths  820ms
       ✓ should return undefined if no path is provided  662ms
       ✓ should return {} when using an invalid path  522ms
       ✓ should return the root pipe schema when path is root path  315ms
       ✓ should return the node schema  334ms
       ✓ should return undefined if no path is provided  432ms
       ✓ should return custom schema from pipe when path is root path  716ms
       ✓ should return empty object when step has no properties  354ms
     ✓ should return the json  310ms
       ✓ should not update the model if no path is provided  338ms
       ✓ should update the model  437ms
       ✓ should not update the model if the path is not correct  413ms
       ✓ should append a new step after existing step  363ms
       ✓ should prepend a new step before existing step  312ms
       ✓ should not add step if newKamelet is undefined  636ms
       ✓ should return false if path is undefined  463ms
       ✓ should return false for sink  414ms
       ✓ should return true for steps  531ms
       ✓ should return true for any other path  443ms
       ✓ should delegate to canDragNode  396ms
       ✓ should return false for source  381ms
       ✓ should return false for sink  380ms
       ✓ should return true for steps  319ms
       ✓ should not remove the step if no path is provided  472ms
       ✓ should remove the `source` step  354ms
       ✓ should remove the `sink` step  330ms
       ✓ should remove the `steps.0` step  451ms
       ✓ should return the correct interaction for the 'source' processor  528ms
       ✓ should return the correct interaction for the 'sink' processor  1041ms
       ✓ should return the correct interaction for the 'steps.1' processor  616ms
       ✓ should return the correct interaction for the '#' processor  384ms
       ✓ should return an `undefined` if the path is `undefined`  1091ms
       ✓ should return an `undefined` if the path is empty  370ms
       ✓ should return a validation text relying on the `validateNodeStatus` method  425ms
       ✓ should use the path as the node id  429ms
       ✓ should use the uri as the node label  397ms
       ✓ should set the title to `Pipe`  339ms
       ✓ should get the titles from children nodes  313ms
       ✓ should set the node labels when the uri is not available  304ms
       ✓ should include all steps as children of the Pipe group  310ms
 ✓ src/components/Document/Nodes/BaseNode.test.tsx (37 tests) 472ms
 ✓ src/components/DataMapper/XsltDocumentRenameInput.test.tsx (34 tests) 2681ms
       ✓ should reset validation when input value matches the original prop value  385ms
 ✓ src/components/PropertiesModal/camel-to-table.adapter.test.ts (23 tests) 14ms
 ✓ src/components/PropertiesModal/PropertiesModal.test.tsx (8 tests) 3682ms
 ✓ src/models/visualization/flows/abstract-camel-visual-entity.test.ts (46 tests) 2359ms
stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > should render correctly
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > should schedule a graph.fit(80) upon loading
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > when initialized is true, runs fromModel(model, true), and applyCollapseState
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > should be able to delete the routes
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > should be able to delete the kamelets
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > Catalog button > should be present if `CatalogModalContext` is provided
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > Catalog button > should NOT be present if `CatalogModalContext` is NOT provided
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > Active Layout Priority > should use `'DagreHorizontal'` layout when canvasLayoutDirection is set to `'Horizontal'`
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > Active Layout Priority > should use `'DagreVertical'` layout when canvasLayoutDirection is set to `'Vertical'`
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > Active Layout Priority > should use `'DagreHorizontal'` layout when canvasLayoutDirection is set to `'SelectInCanvas'`
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > Active Layout Priority > should use `'DagreVertical'` layout when canvasLayoutDirection is set to `'SelectInCanvas'`
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > Layout Toggle Buttons > should update localStorage when horizontal layout button is clicked
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > Layout Toggle Buttons > should update localStorage when vertical layout button is clicked
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > Layout Toggle Buttons > should NOT show layout toggle buttons when canvasLayoutDirection is Horizontal
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

stdout | src/components/Visualization/Canvas/Canvas.test.tsx > Canvas > Layout Toggle Buttons > should NOT show layout toggle buttons when canvasLayoutDirection is Vertical
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

 ✓ src/components/Visualization/Canvas/Canvas.test.tsx (18 tests) 2268ms
     ✓ should render correctly  350ms
 ✓ src/components/Document/actions/MappingMenu/MappingContextMenuAction.test.tsx (20 tests) 1131ms
 ✓ src/models/datamapper/document-tree-node.test.ts (31 tests) 12ms
 ✓ src/models/visualization/flows/camel-route-visual-entity.test.ts (53 tests) 46ms
 ✓ src/store/document-tree.store.test.ts (30 tests) 227ms
 ✓ src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx (27 tests) 1009ms
 ✓ src/components/Visualization/Canvas/Form/fields/EndpointField/EndpointField.test.tsx (15 tests) 1925ms
     ✓ should create new endpoint  767ms
     ✓ should restore the previous endpoint reference when cancel is clicked  401ms
 ✓ src/services/visualization/tree-ui.service.test.ts (28 tests) 273ms
 ✓ src/components/Visualization/Canvas/StepToolbar/StepToolbar.test.tsx (20 tests) 113ms
 ✓ src/services/document/xml-schema/xml-schema-analysis.service.test.ts (30 tests) 85ms
 ✓ src/components/Visualization/Canvas/Form/fields/MediaTypeField/MediaTypeField.test.tsx (29 tests) 8504ms
       ✓ should open dropdown when clicking toggle  1745ms
       ✓ should select a media type when clicking an option  580ms
       ✓ should select multiple media types  1166ms
       ✓ should deselect a media type when clicking a selected option  685ms
       ✓ should set value to undefined when deselecting the last item  632ms
       ✓ should show checkboxes for selected items  569ms
       ✓ should display custom media types from settings in options  502ms
       ✓ should display custom values that are not in common list  446ms
       ✓ should not add duplicate custom media type to selection  323ms
 ✓ src/components/ExpansionPanels/expansion-utils.test.ts (36 tests) 8ms
 ✓ src/models/citrus/citrus-test-resource.test.ts (42 tests) 115ms
 ✓ src/services/schema-path.service.test.ts (34 tests) 249ms
 ✓ src/components/Document/actions/MappingMenu/Sort/SortModal.test.tsx (26 tests) 2875ms
 ✓ src/services/mapping/mapping-serializer.service.json.test.ts (2 tests) 71ms
 ✓ src/components/ExpansionPanels/ExpansionPanel.test.tsx (29 tests) 162ms
 ✓ src/components/Visualization/ContextToolbar/Flows/FlowsList.test.tsx (20 tests) 983ms
 ✓ src/models/visualization/visualization-node.test.ts (30 tests) 34ms
 ✓ src/utils/update-kamelet-from-custom-schema.test.ts (7 tests) 12ms
 ✓ src/dynamic-catalog/catalog-modal.provider.test.tsx (14 tests) 2524ms
       ✓ should open modal and fetch tiles when getNewComponent is called  489ms
       ✓ should support multiple sequential getNewComponent calls  449ms
 ✓ src/serializers/xml/parsers/step-parser.test.ts (50 tests) 4546ms
 ✓ src/components/Visualization/Custom/ContextMenu/item-interaction-helper.test.ts (12 tests) 11ms
 ✓ src/components/Visualization/Custom/hooks/replace-step.hook.test.tsx (14 tests) 79ms
 ✓ src/utils/camel-uri-helper.test.ts (80 tests) 24ms
 ✓ src/providers/datamapper-dnd.provider.test.tsx (17 tests) 27ms
 ✓ src/models/visualization/flows/camel-rest-visual-entity.test.ts (43 tests) 2941ms
 ✓ src/dynamic-catalog/dynamic-catalog.test.ts (29 tests) 23ms
 ✓ src/xml-schema-ts/utils/NodeNamespaceContext.test.ts (28 tests) 121ms
 ✓ src/pages/RestDslImport/RestDslImportWizard.test.tsx (21 tests) 1444ms
 ✓ src/components/Document/actions/MappingMenu/ForEachGroup/ForEachGroupModal.test.tsx (23 tests) 2986ms
 ✓ src/pages/RestDslEditor/components/RestTreeToolbar.test.tsx (17 tests) 1439ms
       ✓ should be disabled when RestConfiguration already exists  338ms
 ✓ src/utils/get-custom-schema-from-kamelet.test.ts (4 tests) 7ms
 ✓ src/hooks/usePasteEntity.test.tsx (15 tests) 682ms
 ✓ src/components/View/SourceTargetView.test.tsx (10 tests) 3795ms
       ✓ should attach and detach schema  862ms
       ✓ should attach and detach schema  806ms
       ✓ should attach JSON schema  614ms
       ✓ should attach Camel YAML JSON schema  1029ms
 ✓ src/models/visualization/flows/support/camel-component-filter.service.test.ts (25 tests) 9ms
 ✓ src/dynamic-catalog/dynamic-catalog-registry.test.ts (16 tests) 11ms
 ✓ src/components/DataMapper/debug/ExportMappingFileModal.test.tsx (20 tests) 852ms
 ✓ src/components/Document/actions/FieldOverride/override-util.test.ts (23 tests) 13ms
 ✓ src/services/datamapper-step.service.test.ts (21 tests) 16ms
 ✓ src/services/document/json-schema/json-schema-types.service.test.ts (23 tests) 17ms
stdout | src/components/Visualization/Canvas/Form/CanvasFormBody.test.tsx > CanvasFormBody > should persists changes from both expression editor and main form > expression => main form
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"

stdout | src/components/Visualization/Canvas/Form/CanvasFormBody.test.tsx > CanvasFormBody > should persists changes from both expression editor and main form > main form => expression
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"

 ✓ src/models/camel/entity-ordering.service.test.ts (24 tests) 11ms
stdout | src/components/Visualization/Canvas/Form/CanvasFormBody.test.tsx > CanvasFormBody > should persists changes from both dataformat editor and main form > dataformat => main form
unknown format "bean:java.security.Key" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/key"
unknown format "bean:java.security.Key" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/key"
unknown format "bean:java.security.spec.AlgorithmParameterSpec" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/algorithmParameterSpec"
unknown format "bean:java.security.spec.AlgorithmParameterSpec" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/algorithmParameterSpec"
unknown format "bean:net.sf.flatpack.ParserFactory" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.FlatpackDataFormat/properties/parserFactory"
unknown format "bean:net.sf.flatpack.ParserFactory" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.FlatpackDataFormat/properties/parserFactory"
unknown format "bean:ca.uhn.hl7v2.parser.Parser" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.HL7DataFormat/properties/parser"
unknown format "bean:ca.uhn.hl7v2.parser.Parser" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.HL7DataFormat/properties/parser"
unknown format "bean:org.apache.camel.component.jackson.SchemaResolver" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.JsonDataFormat/properties/schemaResolver"
unknown format "bean:org.apache.camel.component.jackson.SchemaResolver" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.JsonDataFormat/properties/schemaResolver"
unknown format "bean:java.security.KeyPair" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyPair"
unknown format "bean:java.security.KeyPair" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyPair"
unknown format "bean:javax.crypto.KeyGenerator" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyGenerator"
unknown format "bean:javax.crypto.KeyGenerator" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyGenerator"
unknown format "bean:org.apache.camel.dataformat.soap.name.ElementNameStrategy" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SoapDataFormat/properties/elementNameStrategy"
unknown format "bean:org.apache.camel.dataformat.soap.name.ElementNameStrategy" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SoapDataFormat/properties/elementNameStrategy"
unknown format "bean:com.prowidesoftware.swift.model.MxId" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readMessageId"
unknown format "bean:com.prowidesoftware.swift.model.MxId" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readMessageId"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxReadConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxReadConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxWriteConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/writeConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxWriteConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/writeConfig"
unknown format "binary" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/passPhraseByte"
unknown format "binary" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/passPhraseByte"
unknown format "bean:org.apache.camel.support.jsse.KeyStoreParameters" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/keyOrTrustStoreParameters"
unknown format "bean:org.apache.camel.support.jsse.KeyStoreParameters" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/keyOrTrustStoreParameters"
unknown format "dataFormatType" ignored in schema at path "#/anyOf/0"
unknown format "dataFormatType" ignored in schema at path "#/anyOf/0"

stdout | src/components/Visualization/Canvas/Form/CanvasFormBody.test.tsx > CanvasFormBody > should persists changes from both dataformat editor and main form > main form => dataformat
unknown format "bean:java.security.Key" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/key"
unknown format "bean:java.security.Key" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/key"
unknown format "bean:java.security.spec.AlgorithmParameterSpec" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/algorithmParameterSpec"
unknown format "bean:java.security.spec.AlgorithmParameterSpec" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/algorithmParameterSpec"
unknown format "bean:net.sf.flatpack.ParserFactory" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.FlatpackDataFormat/properties/parserFactory"
unknown format "bean:net.sf.flatpack.ParserFactory" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.FlatpackDataFormat/properties/parserFactory"
unknown format "bean:ca.uhn.hl7v2.parser.Parser" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.HL7DataFormat/properties/parser"
unknown format "bean:ca.uhn.hl7v2.parser.Parser" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.HL7DataFormat/properties/parser"
unknown format "bean:org.apache.camel.component.jackson.SchemaResolver" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.JsonDataFormat/properties/schemaResolver"
unknown format "bean:org.apache.camel.component.jackson.SchemaResolver" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.JsonDataFormat/properties/schemaResolver"
unknown format "bean:java.security.KeyPair" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyPair"
unknown format "bean:java.security.KeyPair" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyPair"
unknown format "bean:javax.crypto.KeyGenerator" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyGenerator"
unknown format "bean:javax.crypto.KeyGenerator" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyGenerator"
unknown format "bean:org.apache.camel.dataformat.soap.name.ElementNameStrategy" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SoapDataFormat/properties/elementNameStrategy"
unknown format "bean:org.apache.camel.dataformat.soap.name.ElementNameStrategy" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SoapDataFormat/properties/elementNameStrategy"
unknown format "bean:com.prowidesoftware.swift.model.MxId" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readMessageId"
unknown format "bean:com.prowidesoftware.swift.model.MxId" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readMessageId"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxReadConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxReadConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxWriteConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/writeConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxWriteConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/writeConfig"
unknown format "binary" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/passPhraseByte"
unknown format "binary" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/passPhraseByte"
unknown format "bean:org.apache.camel.support.jsse.KeyStoreParameters" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/keyOrTrustStoreParameters"
unknown format "bean:org.apache.camel.support.jsse.KeyStoreParameters" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/keyOrTrustStoreParameters"
unknown format "dataFormatType" ignored in schema at path "#/anyOf/0"
unknown format "dataFormatType" ignored in schema at path "#/anyOf/0"

 ✓ src/services/visualization/visualization-util.service.test.ts (34 tests) 710ms
stdout | src/components/Visualization/Canvas/Form/CanvasFormBody.test.tsx > CanvasFormBody > should persists changes from both loadbalancer editor and main form > loadbalancer => main form
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "loadBalancerType" ignored in schema at path "#/anyOf/0"
unknown format "loadBalancerType" ignored in schema at path "#/anyOf/0"

stdout | src/components/Visualization/Canvas/Form/CanvasFormBody.test.tsx > CanvasFormBody > should persists changes from both loadbalancer editor and main form > main form => loadbalancer
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "loadBalancerType" ignored in schema at path "#/anyOf/0"
unknown format "loadBalancerType" ignored in schema at path "#/anyOf/0"

 ✓ src/dynamic-catalog/catalog-tiles.provider.test.tsx (10 tests) 8092ms
     ✓ should render children  2952ms
     ✓ should provide fetchTiles and getTiles functions through context  463ms
     ✓ should build the tiles when fetchTiles is called  509ms
     ✓ should call getAll on all catalog kinds  604ms
     ✓ should avoid building the tiles if the catalog is empty  785ms
     ✓ should return combined tiles from all catalog kinds  901ms
     ✓ should use the callback dependency on catalogRegistry  469ms
     ✓ should return cached tiles from getTiles after fetchTiles is called  367ms
     ✓ logs an error and still renders children when fetching tiles fails  564ms
     ✓ should populate tiles upon loading  473ms
 ✓ src/components/Visualization/Canvas/Form/CanvasFormBody.test.tsx (7 tests) 10077ms
       ✓ expression => main form  930ms
       ✓ main form => expression  704ms
       ✓ dataformat => main form  1540ms
       ✓ main form => dataformat  1994ms
       ✓ loadbalancer => main form  699ms
       ✓ main form => loadbalancer  639ms
 ✓ src/services/documentation.service.test.tsx (14 tests) 371ms
 ✓ src/services/mapping/mapping-serializer-json-addon.test.ts (9 tests) 119ms
 ✓ src/xml-schema-ts/utils/XDOMUtil.test.ts (27 tests) 163ms
 ✓ src/components/Visualization/ContextToolbar/FlowExportImage/HiddenCanvas.test.tsx (17 tests) 1186ms
 ✓ src/providers/entities.provider.test.tsx (18 tests) 175ms
 ✓ src/components/Visualization/Custom/hooks/move-step.hook.test.tsx (10 tests) 48ms
 ✓ src/components/Visualization/Custom/customComponentUtils.test.ts (18 tests) 15ms
 ✓ src/components/Visualization/Custom/hooks/insert-step.hook.test.tsx (17 tests) 40ms
 ✓ src/services/visualization/visualization.service.json.test.ts (3 tests) 187ms
 ✓ src/xml-schema-ts/resolver/DefaultURIResolver.test.ts (24 tests) 10ms
 ✓ src/xml-schema-ts/utils/XmlSchemaNamedWithFormImpl.test.ts (32 tests) 9ms
 ✓ src/xml-schema-ts/utils/PrefixCollector.test.ts (17 tests) 102ms
 ✓ src/components/Document/FieldNodePopover/FieldNodePopover.test.tsx (18 tests) 2283ms
     ✓ should render popover button for FieldNodeData  320ms
     ✓ should display field type in popover content  504ms
 ✓ src/hooks/useConnectionPortSync.hook.test.tsx (19 tests) 321ms
 ✓ src/pages/Catalog/CatalogPage.test.tsx (13 tests) 1333ms
 ✓ src/multiplying-architecture/KaotoEditorApp.test.tsx (28 tests) 2151ms
     ✓ should return empty array when getSuggestions times out  2013ms
 ✓ src/serializers/xml/serializers/kaoto-xml-serializer.test.ts (9 tests) 3045ms
 ✓ src/components/Visualization/Canvas/Form/fields/ArrayBadgesField/ArrayBadgesField.test.tsx (19 tests) 655ms
 ✓ src/components/Visualization/Canvas/Form/fields/custom-fields-factory.test.ts (32 tests) 12939ms
     ✓ returns EnumField for enums regardless of the schema type  3111ms
     ✓ returns PrefixedBeanField for Schema Resolver fields  492ms
     ✓ returns PrefixedBeanField for string type with format starting with "bean:"  308ms
     ✓ returns UnprefixedBeanField for string type with title "Ref"  428ms
     ✓ returns DirectEndpointNameField for direct component name schema from camel catalog  355ms
     ✓ returns DirectEndpointNameField for a matching direct endpoint schema  365ms
     ✓ returns ExpressionField for format "expression"  420ms
     ✓ returns ExpressionField for format "expressionProperty"  306ms
     ✓ returns undefined for string type with title "Ref" but non-string type  315ms
     ✓ returns undefined for string type with case-sensitive title mismatch  627ms
     ✓ prioritizes bean format over Ref title when both are present  423ms
     ✓ returns DataSourceBeanField for string type with title containing "Data Source"  356ms
     ✓ returns TextAreaField for string type with title "Data" and matching description  346ms
     ✓ returns TextAreaField for string type with title "Source" and matching description  314ms
     ✓ returns RuntimeCatalogNameField for runtime field  314ms
     ✓ returns TestingCatalogNameField for runtime field  412ms
 ✓ src/components/Document/NodeTitle/NodeTitle.test.tsx (17 tests) 775ms
 ✓ src/hooks/useDataMapperDeleteHotkey.hook.test.tsx (13 tests) 54ms
 ✓ src/components/InlineEdit/InlineEdit.test.tsx (25 tests) 228ms
 ✓ src/components/Document/actions/FieldContextMenu/useAbstractFieldSubstitutionMenu.test.tsx (11 tests) 734ms
 ✓ src/components/DataMapper/on-paste-data-mapper.test.ts (8 tests) 16ms
 ✓ src/services/document/json-schema/json-schema-document.model.test.ts (19 tests) 11ms
 ✓ src/components/Visualization/Custom/Node/PlaceholderNode.test.tsx (10 tests) 117ms
 ✓ src/models/visualization/flows/nodes/resolvers/schema-resolver/node-schema-resolver.test.ts (23 tests) 29ms
 ✓ src/services/parsers/route-parser.test.ts (8 tests) 20ms
 ✓ src/services/document/xml-schema/xml-schema-document.service.abstract.test.ts (9 tests) 245ms
 ✓ src/models/visualization/flows/camel-route-configuration-visual-entity.test.ts (24 tests) 2574ms
 ✓ src/pages/RestDslEditor/components/RestRouteEndpointField.test.tsx (13 tests) 3963ms
 ✓ src/services/document/document-util.service.json.test.ts (9 tests) 42ms
 ✓ src/components/Visualization/Custom/hooks/enable-all-steps.hook.test.tsx (11 tests) 40ms
 ✓ src/components/Document/actions/FieldContextMenu/useFieldOverrideMenu.test.tsx (7 tests) 1185ms
     ✓ should open Field Override Modal when clicking Override Field menu item  315ms
     ✓ should call applyFieldTypeOverride when saving type override  472ms
 ✓ src/xml-schema-ts/QName.test.ts (42 tests) 13ms
 ✓ src/components/Document/actions/FieldOverride/FieldOverride.test.tsx (11 tests) 164ms
 ✓ src/components/Document/actions/DetachSchemaButton.test.tsx (7 tests) 416ms
 ✓ src/components/Visualization/Custom/hooks/paste-step.hook.test.tsx (6 tests) 207ms
 ✓ src/components/Visualization/Canvas/Form/fields/EndpointField/NewEndpointModal.test.tsx (12 tests) 2098ms
     ✓ should render without crashing  341ms
 ✓ src/components/Visualization/Custom/hooks/collapse-step.hook.test.tsx (15 tests) 65ms
 ✓ src/components/Visualization/Custom/Group/CustomGroupExpanded.test.tsx (7 tests) 168ms
 ✓ src/components/Visualization/Custom/hooks/delete-step.hook.test.tsx (10 tests) 30ms
 ✓ src/models/visualization/flows/nodes/node-enrichment.service.test.ts (7 tests) 11ms
 ✓ src/models/visualization/flows/support/camel-component-default.service.test.ts (24 tests) 28ms
 ✓ src/pages/RestDslImport/components/FileImportSource.test.tsx (20 tests) 889ms
 ✓ src/components/DataMapper/debug/DebugLayout.test.tsx (4 tests | 2 skipped) 924ms
       ✓ should import and export mappings  741ms
 ✓ src/components/Visualization/Custom/ContextMenu/NodeContextMenu.test.tsx (16 tests) 2867ms
 ✓ src/components/Document/FieldNodePopover/field-details-utils.test.ts (26 tests) 96ms
stdout | src/pages/RestDslEditor/RestDslEditorPage.test.tsx > RestDslEditorPage > Entity Updates > should update entity on property change
Warning: A component is changing an uncontrolled custom component to be controlled. This is likely caused by the value changing to a defined value from undefined. Decide between using a controlled or uncontrolled value for the lifetime of the component. More info: https://reactjs.org/link/controlled-components

stdout | src/pages/RestDslEditor/RestDslEditorPage.test.tsx > RestDslEditorPage > Entity Updates > should add REST method
Warning: A component is changing an uncontrolled custom component to be controlled. This is likely caused by the value changing to a defined value from undefined. Decide between using a controlled or uncontrolled value for the lifetime of the component. More info: https://reactjs.org/link/controlled-components

stdout | src/pages/RestDslEditor/RestDslEditorPage.test.tsx > RestDslEditorPage > Entity Updates > should delete entity
Warning: A component is changing an uncontrolled custom component to be controlled. This is likely caused by the value changing to a defined value from undefined. Decide between using a controlled or uncontrolled value for the lifetime of the component. More info: https://reactjs.org/link/controlled-components

 ✓ src/components/Document/actions/FieldContextMenu.test.tsx (19 tests) 189ms
stdout | src/pages/RestDslEditor/RestDslEditorPage.test.tsx > RestDslEditorPage > UI Updates > should update tree and form on add REST method
Warning: A component is changing an uncontrolled custom component to be controlled. This is likely caused by the value changing to a defined value from undefined. Decide between using a controlled or uncontrolled value for the lifetime of the component. More info: https://reactjs.org/link/controlled-components

 ✓ src/xml-schema-ts/utils/XmlSchemaRefBase.test.ts (18 tests) 8ms
stdout | src/pages/RestDslEditor/RestDslEditorPage.test.tsx > RestDslEditorPage > UI Updates > should update tree and form on delete
Warning: A component is changing an uncontrolled custom component to be controlled. This is likely caused by the value changing to a defined value from undefined. Decide between using a controlled or uncontrolled value for the lifetime of the component. More info: https://reactjs.org/link/controlled-components

 ✓ src/pages/RestDslEditor/RestDslEditorPage.test.tsx (9 tests) 7651ms
       ✓ should update entity on property change  3079ms
       ✓ should add REST configuration  546ms
       ✓ should add REST service  374ms
       ✓ should add REST method  864ms
       ✓ should delete entity  484ms
       ✓ should update tree and form on add REST configuration  448ms
       ✓ should update tree and form on add REST service  347ms
       ✓ should update tree and form on add REST method  1009ms
       ✓ should update tree and form on delete  497ms
 ✓ src/utils/get-nearest-visible-port.test.ts (13 tests) 7ms
 ✓ src/pages/RestDslImport/components/ApicurioImportSource.test.tsx (13 tests) 1109ms
 ✓ src/components/Visualization/Custom/hooks/duplicate-step.hook.test.tsx (9 tests) 26ms
 ✓ src/components/Document/NodeTitle/node-title-util.test.ts (19 tests) 16ms
 ✓ src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx (19 tests) 676ms
 ✓ src/services/visualization/tree-parsing.service.test.ts (14 tests) 157ms
 ✓ src/xml-schema-ts/utils/XmlSchemaNamedImpl.test.ts (26 tests) 8ms
 ✓ src/components/GroupAutoStartupSwitch/GroupAutoStartupSwitch.test.tsx (9 tests) 280ms
 ✓ src/components/Visualization/ContextToolbar/ExportDocument/ExportDocumentPreviewModal.test.tsx (10 tests) 2127ms
     ✓ updates download file name when input changes  401ms
     ✓ creates download link with correct filename  649ms
 ✓ src/models/visualization/flows/camel-rest-configuration-visual-entity.test.ts (22 tests) 2909ms
 ✓ src/services/xpath/syntaxtree/xpath-syntaxtree-util.test.ts (17 tests) 20ms
 ✓ src/models/datamapper/mapping.test.ts (17 tests) 17ms
 ✓ src/stubs/BrowserFilePickerMetadataProvider.test.tsx (19 tests) 92ms
 ✓ src/components/PropertiesModal/camel-to-tabs.adapter.test.ts (14 tests) 9ms
 ✓ src/components/View/MappingLinkContainer.test.tsx (12 tests) 72ms
 ✓ src/components/Document/actions/MappingMenu/Comment/CommentModal.test.tsx (16 tests) 765ms
 ✓ src/components/Visualization/ContextToolbar/SelectedRuntime/SelectedRuntime.test.tsx (16 tests) 1553ms
       ✓ should display toggletip content when information button is clicked  318ms
 ✓ src/models/visualization/metadata/citrus/endpoints-entity-handler.test.ts (16 tests) 78ms
 ✓ src/components/Document/actions/utils.test.ts (28 tests) 9ms
 ✓ src/camel-utils/camel-to-tile.adapter.test.ts (18 tests) 8ms
 ✓ src/components/Visualization/Custom/hooks/delete-group.hook.test.tsx (8 tests) 26ms
 ✓ src/dynamic-catalog/catalog.provider.test.tsx (10 tests) 3036ms
 ✓ src/pages/RestDslEditor/components/RestTree.test.tsx (10 tests) 262ms
 ✓ src/components/Document/actions/AttachSchema/RootElementSelect.test.tsx (13 tests) 637ms
 ✓ src/components/Visualization/ContextToolbar/ContextToolbar.test.tsx (16 tests) 172ms
 ✓ src/components/Document/Variables/VariableInputPlaceholder.test.tsx (15 tests) 285ms
 ✓ src/components/Visualization/ContextToolbar/NewEntity/NewEntity.test.tsx (8 tests) 6327ms
     ✓ component renders  2999ms
     ✓ should call `updateEntitiesFromCamelResource` when selecting an item  664ms
     ✓ should toggle list of DSLs  509ms
     ✓ should close Select when pressing ESC  484ms
       ✓ should show all entities including YAML-only ones  349ms
       ✓ should display entities in proper groups  538ms
       ✓ should allow selecting entities from submenus  438ms
       ✓ should handle empty groups gracefully  343ms
 ✓ src/components/Visualization/Custom/hooks/add-step.hook.test.tsx (9 tests) 58ms
 ✓ src/components/Visualization/Custom/ContextMenu/get-move-icons.util.test.ts (22 tests) 9ms
 ✓ src/components/DataMapper/DataMapper.test.tsx (6 tests) 2459ms
     ✓ should render initial XSLT mappings with initial documents  1226ms
     ✓ should not render toolbar menu in embedded mode  1015ms
 ✓ src/models/visualization/flows/nodes/mappers/route-configuration-node-mapper.test.ts (9 tests) 15ms
 ✓ src/components/Document/actions/TypeaheadInput.test.tsx (18 tests) 470ms
 ✓ src/components/Visualization/Canvas/Form/fields/EndpointPropertiesField/EndpointPropertiesField.test.tsx (8 tests) 369ms
 ✓ src/components/Visualization/Canvas/Form/fields/ExpressionField/ExpressionField.test.tsx (7 tests) 5340ms
     ✓ renders empty expression field with schema  2748ms
     ✓ renders expression field with selection  473ms
     ✓ should be able to change the selection  529ms
     ✓ onExpressionChange should handle empty string values  445ms
     ✓ should call onPropertyChange with the preserved expression after selection change  482ms
     ✓ should clear the expression when using the clear button  364ms
 ✓ src/pages/RestDslEditor/components/get-rest-entities.test.ts (8 tests) 25ms
 ✓ src/models/visualization/metadata/beans-entity-handler.test.ts (8 tests) 2834ms
 ✓ src/components/Visualization/Canvas/flow.service.test.ts (9 tests) 36ms
 ✓ src/utils/ClipboardManager.test.ts (8 tests) 8ms
 ✓ src/components/ExpansionPanels/ExpansionContext.test.tsx (10 tests) 55ms
 ✓ src/models/datamapper/document.test.ts (8 tests) 8ms
 ✓ src/components/Visualization/Canvas/apply-collapse-state.test.ts (9 tests) 12ms
 ✓ src/models/visualization/flows/camel-error-handler-visual-entity.test.ts (24 tests) 2631ms
 ✓ src/providers/runtime.provider.test.tsx (7 tests) 390ms
 ✓ src/components/Document/actions/WrapperSelectionModal.test.tsx (17 tests) 1405ms
     ✓ should show no-results message when filter matches nothing  400ms
 ✓ src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx (7 tests) 899ms
 ✓ src/models/kaoto-resource.test.ts (13 tests | 1 skipped) 39ms
 ✓ src/components/Visualization/Custom/Node/CustomNodeContainer.test.tsx (11 tests) 69ms
 ✓ src/services/visualization/mapping-links.service.json.test.ts (2 tests) 159ms
 ✓ src/components/Visualization/Custom/hooks/disable-step.hook.test.tsx (11 tests) 35ms
 ✓ src/components/Visualization/IntegrationTypeSelector/IntegrationTypeSelector.test.tsx (10 tests) 548ms
stdout | src/components/XPath/XPathEditorLayout.test.tsx
monospace assumptions have been violated, therefore disabling monospace optimizations!

 ✓ src/components/XPath/XPathEditorLayout.test.tsx (8 tests) 2733ms
     ✓ renders the search field  664ms
     ✓ collapses a group when toggle button is clicked  358ms
     ✓ expands a collapsed group when toggle button is clicked again  404ms
 ✓ src/models/visualization/flows/kamelet-visual-entity.test.ts (13 tests) 2729ms
     ✓ should return the kamelet root schema when querying the ROOT_PATH  2713ms
 ✓ src/components/Visualization/Canvas/Form/fields/ExpressionField/expression.service.test.ts (13 tests) 2893ms
 ✓ src/dynamic-catalog/support/fetch-citrus-catalog.test.ts (3 tests) 66ms
 ✓ src/pages/RestDslImport/components/UriImportSource.test.tsx (10 tests) 827ms
 ✓ src/dynamic-catalog/support/fetch-camel-catalog.test.ts (2 tests) 2765ms
 ✓ src/models/camel/kamelet-resource.test.ts (12 tests) 35ms
 ✓ src/models/visualization/flows/camel-catalog.service.test.ts (12 tests) 5668ms
       ✓ should return the component  2668ms
       ✓ should return `undefined` for an `undefined` component name  332ms
       ✓ should return an empty object if there is no data format map  317ms
       ✓ should return an empty object if there is no load balancer map  301ms
       ✓ should return a kamelet from the catalog lookup  311ms
 ✓ src/components/MetadataEditor/MetadataEditor.test.tsx (8 tests) 2000ms
     ✓ component renders  300ms
     ✓ Details enabled if select  314ms
     ✓ add property and confirm  347ms
     ✓ delete property and save  309ms
 ✓ src/components/ComponentMode/ComponentMode.test.tsx (9 tests) 334ms
 ✓ src/models/visualization/flows/nodes/resolvers/title-resolver/node-title-resolver.test.ts (13 tests) 7ms
 ✓ src/components/Visualization/ContextToolbar/Flows/FlowsMenu.test.tsx (7 tests) 322ms
 ✓ src/providers/kaoto-resource.provider.test.tsx (6 tests) 83ms
 ✓ src/providers/action-confirmaton-modal.provider.test.tsx (4 tests) 665ms
 ✓ src/multiplying-architecture/Bridge/SourceCodeBridgeProvider.test.tsx (8 tests) 73ms
 ✓ src/models/visualization/flows/support/validators/model-validation.service.test.ts (9 tests) 2798ms
 ✓ src/multiplying-architecture/KaotoEditorFactory.test.ts (4 tests) 520ms
     ✓ should fallback to previous API if getVSCodeKaotoSettings is not implemented  511ms
 ✓ src/components/Visualization/EmptyState/FlowType/NewFlow.test.tsx (4 tests) 323ms
 ✓ src/providers/dnd/SourceTargetDnDHandler.test.ts (8 tests) 8ms
 ✓ src/components/Document/actions/AttachSchema/AttachSchemaButton.test.tsx (4 tests) 292ms
 ✓ src/utils/catalog-schema-loader.test.ts (11 tests) 7ms
 ✓ src/components/Visualization/ContextToolbar/IntegrationTypeSelector/IntegrationTypeSelectorToggle/IntegrationTypeSelectorToggle.test.tsx (7 tests) 579ms
 ✓ src/components/DataMapper/on-duplicate-datamapper.test.ts (5 tests) 8ms
 ✓ src/models/visualization/flows/camel-intercept-send-to-endpoint-visual-entity.test.ts (21 tests) 18ms
 ✓ src/components/Visualization/Canvas/Form/fields/EndpointPropertiesField/MultiValuePropertyEditor.test.tsx (5 tests) 96ms
 ✓ src/models/camel/camel-xml-route-resource.test.ts (12 tests) 3490ms
     ✓ defers catalog-dependent parsing to initialize() so steps survive a cold catalog  2854ms
     ✓ reports XML and serializes back to XML  376ms
 ✓ src/components/Visualization/Canvas/Form/fields/DirectEndpointNameField.hooks.test.tsx (7 tests) 57ms
 ✓ src/hooks/use-processor-tooltips.hook.test.ts (6 tests) 361ms
 ✓ src/components/Document/actions/FieldOverride/SchemaFileList.test.tsx (10 tests) 190ms
 ✓ src/components/DataMapper/DataMapperModal.test.tsx (10 tests) 221ms
 ✓ src/serializers/xml/serializers/expression-xml-serializer.test.ts (9 tests) 2667ms
 ✓ src/models/visualization/flows/camel-intercept-from-visual-entity.test.ts (23 tests) 15ms
 ✓ src/providers/dnd/ExpressionEditorDnDHandler.test.ts (6 tests) 6ms
 ✓ src/multiplying-architecture/Bridge/editor-api.test.tsx (10 tests) 32ms
 ✓ src/components/Visualization/Custom/hooks/delete-hotkey.hook.test.tsx (7 tests) 34ms
 ✓ src/components/Visualization/Custom/Node/CustomNode.test.tsx (4 tests) 85ms
 ✓ src/components/Visualization/ContextToolbar/IntegrationTypeSelector/IntegrationTypeSelector.test.tsx (3 tests) 386ms
 ✓ src/components/Document/actions/XPathInputAction.test.tsx (7 tests) 401ms
 ✓ src/components/Visualization/Canvas/Form/suggestions/suggestions/simple-language.suggestions.test.ts (15 tests) 7484ms
     ✓ should apply to string properties  2818ms
     ✓ should apply to string properties  461ms
     ✓ should apply to string properties  361ms
     ✓ should apply to string properties  342ms
     ✓ should apply to string properties  353ms
     ✓ should return suggestions for word="''" inputValue="'test example'"  428ms
     ✓ should return suggestions from the catalog  451ms
     ✓ should generate basic functions if the catalog is not available  343ms
     ✓ should return suggestions from the catalog with metadata  348ms
 ✓ src/models/visualization/flows/nodes/resolvers/catalog-resolver.factory.test.ts (10 tests) 7ms
 ✓ src/store/sourcecode.store.test.ts (12 tests) 22ms
 ✓ src/models/visualization/flows/camel-on-completion-visual-entity.test.ts (21 tests) 14ms
 ✓ src/components/ResizableSplitPanels/SplitPanel.test.tsx (8 tests) 125ms
 ✓ src/components/Document/NameInputPlaceholder.test.tsx (11 tests) 161ms
 ✓ src/models/visualization/flows/support/citrus-test-schema.service.test.ts (27 tests) 70ms
 ✓ src/services/parsers/beans-parser.test.ts (3 tests) 15ms
 ✓ src/components/Document/BaseDocument.test.tsx (5 tests) 281ms
 ✓ src/utils/process-tree-node.test.ts (5 tests) 1117ms
     ✓ should process a complex DocumentTree  968ms
 ✓ src/components/Document/actions/FieldContextMenu/menu-utils.test.ts (7 tests) 7ms
 ✓ src/models/visualization/flows/camel-intercept-visual-entity.test.ts (21 tests) 24ms
 ✓ src/models/visualization/flows/support/flows-visibility.test.ts (14 tests) 10ms
 ✓ src/components/Visualization/Canvas/Form/fields/EndpointPropertiesField/MultiValueProperty.service.test.ts (9 tests) 3086ms
 ✓ src/components/Visualization/Custom/NoBendingEdge.test.ts (11 tests) 14ms
 ✓ src/serializers/xml/parsers/route-xml-parser.test.ts (4 tests) 2792ms
 ✓ src/components/Visualization/ConfirmIntegrationTypeChangeModal/ConfirmIntegrationTypeChangeModal.test.tsx (9 tests) 276ms
 ✓ src/models/visualization/flows/nodes/mappers/base-node-mapper.test.ts (4 tests) 10ms
 ✓ src/utils/pipe-custom-schema.test.ts (4 tests) 22ms
 ✓ src/components/Visualization/Canvas/Form/fields/DirectEndpointNameField.test.tsx (3 tests) 317ms
 ✓ src/components/Visualization/Custom/ContextMenu/ItemDeleteGroup.test.tsx (4 tests) 168ms
 ✓ src/components/Document/actions/withFieldContextMenu.test.tsx (5 tests) 241ms
 ✓ src/components/Visualization/Custom/ContextMenu/ItemReplaceStep.test.tsx (3 tests) 92ms
 ✓ src/models/visualization/flows/camel-on-exception-visual-entity.test.ts (16 tests) 12ms
 ✓ src/models/camel/pipe-resource.test.ts (7 tests) 12ms
 ✓ src/components/Visualization/ContextToolbar/FlowExportImage/FlowExportImage.test.tsx (3 tests) 1162ms
     ✓ runs full export flow  1100ms
 ✓ src/components/Document/NodeContainer.test.tsx (4 tests) 31ms
 ✓ src/serializers/xml/serializers/beans-xml-serializer.test.ts (4 tests) 2577ms
 ✓ src/pages/SourceCode/SourceCodePage.test.tsx (6 tests) 32ms
 ✓ src/utils/get-viznodes-from-graph.test.ts (4 tests) 34ms
 ✓ src/components/Visualization/Canvas/controller.service.test.ts (12 tests) 17ms
 ✓ src/services/xpath/xpath.service.json.test.ts (4 tests) 18ms
 ✓ src/components/Catalog/filter-tiles.test.ts (6 tests) 6ms
stdout | src/models/visualization/flows/nodes/resolvers/tooltip-resolver/getTooltipRequest.test.ts > getTooltipRequest > should handle catalog errors gracefully
Failed to fetch property from component catalog for "kafka" Error: Catalog error
    at /workspace/packages/ui/src/models/visualization/flows/nodes/resolvers/tooltip-resolver/getTooltipRequest.test.ts:106:37
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:302:11
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:1903:26
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:2326:20
    at new Promise (<anonymous>)
    at runWithCancel (file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:2323:10)
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:2305:20
    at new Promise (<anonymous>)
    at runWithTimeout (file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:2272:10)
    at file:///workspace/node_modules/@vitest/runner/dist/chunk-artifact.js:2955:64

 ✓ src/models/visualization/flows/nodes/resolvers/tooltip-resolver/getTooltipRequest.test.ts (9 tests) 10ms
 ✓ src/services/parsers/pipe-parser.test.ts (4 tests) 11ms
 ✓ src/providers/schemas.provider.test.tsx (4 tests) 42ms
 ✓ src/components/Document/FieldIcon.test.tsx (27 tests) 110ms
 ✓ src/serializers/xml/kaoto-xml-parser.test.ts (14 tests) 2751ms
 ✓ src/serializers/xml/serializers/rest-xml-serializer.test.ts (4 tests) 3020ms
 ✓ src/components/RenderingAnchor/rendering.provider.test.tsx (5 tests) 73ms
 ✓ src/components/View/SourcePanel.test.tsx (3 tests) 148ms
 ✓ src/components/Visualization/Custom/ContextMenu/ItemEnableAllSteps.test.tsx (2 tests) 2539ms
 ✓ src/components/DataMapper/on-delete-datamapper.test.ts (4 tests) 8ms
 ✓ src/components/Catalog/BaseCatalog.test.tsx (4 tests) 4636ms
     ✓ renders correctly with Gallery Layout  328ms
     ✓ Render BaseCatalog with 60 tiles, 2 pages with 50 tiles on the 1st page and 10 tiles on the 2nd page  1737ms
     ✓ Render BaseCatalog with 60 tiles, change per page setting to 20  2300ms
 ✓ src/components/Visualization/Custom/Graph/CustomGraph.test.tsx (8 tests) 79ms
 ✓ src/components/Visualization/Canvas/Form/suggestions/suggestions/properties.suggestions.test.ts (10 tests) 8ms
 ✓ src/pages/RestDslEditor/rest-to-tree.test.ts (2 tests) 27ms
 ✓ src/components/Visualization/Custom/Graph/generateEntityContextMenu.test.tsx (5 tests) 44ms
 ✓ src/components/DataMapper/debug/ExportMappingFileDropdownItem.test.tsx (10 tests) 96ms
 ✓ src/components/Visualization/Custom/ContextMenu/ItemDeleteStep.test.tsx (4 tests) 66ms
 ✓ src/components/Document/actions/DeleteMappingItemAction.test.tsx (2 tests) 332ms
 ✓ src/components/Visualization/Custom/Graph/ItemPasteEntity.test.tsx (8 tests) 118ms
 ✓ src/models/visualization/flows/nodes/mappers/choice-node-mapper.test.ts (4 tests) 11ms
 ✓ src/components/Visualization/EmptyState/FlowType/FlowTypeSelector.test.tsx (4 tests) 158ms
 ✓ src/utils/xml-comments.test.ts (13 tests) 6ms
 ✓ src/models/visualization/flows/support/citrus-test-default.service.test.ts (6 tests) 77ms
 ✓ src/models/camel/camel-resource-factory.test.ts (11 tests) 32ms
 ✓ src/components/Document/ParameterInputPlaceholder.test.tsx (3 tests) 91ms
 ✓ src/components/Visualization/Canvas/Form/fields/UriField/UriField.test.tsx (6 tests) 206ms
 ✓ src/components/Visualization/Canvas/Form/suggestions/SuggestionsProvider.test.tsx (3 tests) 17ms
 ✓ src/models/visualization/flows/nodes/mappers/parallel-processor-base-node-mapper.test.ts (4 tests) 8ms
 ✓ src/models/visualization/flows/nodes/mappers/step-node-mapper.test.ts (4 tests) 40ms
 ✓ src/components/Visualization/Visualization.test.tsx (3 tests) 30ms
 ✓ src/components/Visualization/Canvas/Form/fields/BeanField/NewBeanModal.test.tsx (7 tests) 5569ms
     ✓ should renders without crashing  558ms
     ✓ should call `onCancelCreateBean` when cancel button is clicked  416ms
     ✓ should call `onCreateBean` when create button is clicked  446ms
     ✓ should NOT call `onCreateBean` when create button is clicked but the schema is missing required fields  463ms
     ✓ displays the correct title and description  384ms
     ✓ updates the bean model when form changes  539ms
 ✓ src/dynamic-catalog/use-catalog-tiles.hook.test.tsx (5 tests) 39ms
 ✓ src/components/Document/actions/MappingMenu/Sort/useSortKeyItems.test.ts (5 tests) 47ms
 ✓ src/components/Visualization/Custom/Edge/CustomEdge.test.tsx (2 tests) 121ms
stdout | src/components/Settings/SettingsForm.test.tsx > SettingsForm > should render
unknown format "uri" ignored in schema at path "#/properties/catalogUrl"
unknown format "uri" ignored in schema at path "#/properties/catalogUrl"
unknown format "uri" ignored in schema at path "#/properties/rest/properties/apicurioRegistryUrl"
unknown format "uri" ignored in schema at path "#/properties/rest/properties/apicurioRegistryUrl"

stdout | src/components/Settings/SettingsForm.test.tsx > SettingsForm > should update settings upon clicking save
unknown format "uri" ignored in schema at path "#/properties/catalogUrl"
unknown format "uri" ignored in schema at path "#/properties/catalogUrl"
unknown format "uri" ignored in schema at path "#/properties/rest/properties/apicurioRegistryUrl"
unknown format "uri" ignored in schema at path "#/properties/rest/properties/apicurioRegistryUrl"

stdout | src/components/Settings/SettingsForm.test.tsx > SettingsForm > should not update settings if the save button was not clicked
unknown format "uri" ignored in schema at path "#/properties/catalogUrl"
unknown format "uri" ignored in schema at path "#/properties/catalogUrl"
unknown format "uri" ignored in schema at path "#/properties/rest/properties/apicurioRegistryUrl"
unknown format "uri" ignored in schema at path "#/properties/rest/properties/apicurioRegistryUrl"

 ✓ src/components/Document/actions/ConfirmActionButton.test.tsx (6 tests) 479ms
stdout | src/components/Settings/SettingsForm.test.tsx > SettingsForm > should reload the page upon clicking save
unknown format "uri" ignored in schema at path "#/properties/catalogUrl"
unknown format "uri" ignored in schema at path "#/properties/catalogUrl"
unknown format "uri" ignored in schema at path "#/properties/rest/properties/apicurioRegistryUrl"
unknown format "uri" ignored in schema at path "#/properties/rest/properties/apicurioRegistryUrl"

stdout | src/components/Settings/SettingsForm.test.tsx > SettingsForm > should display error alert when save fails
unknown format "uri" ignored in schema at path "#/properties/catalogUrl"
unknown format "uri" ignored in schema at path "#/properties/catalogUrl"
unknown format "uri" ignored in schema at path "#/properties/rest/properties/apicurioRegistryUrl"
unknown format "uri" ignored in schema at path "#/properties/rest/properties/apicurioRegistryUrl"

 ✓ src/components/Settings/SettingsForm.test.tsx (5 tests) 2843ms
     ✓ should render  694ms
     ✓ should update settings upon clicking save  1075ms
     ✓ should not update settings if the save button was not clicked  526ms
     ✓ should reload the page upon clicking save  330ms
 ✓ src/components/registers/RegisterNodeInteractionAddons.test.tsx (4 tests) 96ms
 ✓ src/models/visualization/flows/nodes/resolvers/title-resolver/getTitleRequest.test.ts (7 tests) 6ms
 ✓ src/utils/catalog-helper.test.ts (5 tests) 6ms
 ✓ src/serializers/xml/parsers/expression-parser.test.ts (4 tests) 3320ms
 ✓ src/services/parsers/kamelet-parser.test.ts (1 test) 10ms
 ✓ src/components/View/MappingLink.test.tsx (6 tests) 97ms
 ✓ src/components/View/TargetPanel.test.tsx (5 tests) 329ms
 ✓ src/hooks/use-visible-viz-nodes.test.ts (4 tests) 245ms
 ✓ src/services/parsers/common-parser.test.ts (6 tests) 9ms
 ✓ src/utils/get-potential-path.test.ts (11 tests) 16ms
 ✓ src/pages/RestDslEditor/components/AddMethodModal.test.tsx (4 tests) 934ms
     ✓ should render modal with correct title and structure  368ms
     ✓ should call onAddMethod with correct form data when Add button is clicked with valid data  310ms
 ✓ src/models/visualization/flows/nodes/mappers/datamapper-node-mapper.test.ts (5 tests) 7ms
 ✓ src/components/Document/actions/TargetNodeActions.test.tsx (3 tests) 174ms
 ✓ src/components/Document/FieldNodePopover/FieldDetailRow.test.tsx (9 tests) 57ms
 ✓ src/providers/source-code-local-storage.provider.test.tsx (6 tests) 31ms
 ✓ src/services/parsers/rest-parser.test.ts (3 tests) 21ms
 ✓ src/xml-schema-ts/XmlSchemaDerivationMethod.test.ts (11 tests) 5ms
 ✓ src/models/visualization/flows/nodes/mappers/circuit-breaker-node-mapper.test.ts (4 tests) 8ms
 ✓ src/components/InlineEdit/routeIdValidator.test.ts (12 tests) 9ms
 ✓ src/serializers/xml/parsers/beans-xml-parser.test.ts (3 tests) 2883ms
 ✓ src/components/Visualization/Custom/Group/CustomGroup.test.tsx (3 tests) 30ms
 ✓ src/components/Document/FieldNodePopover/FieldDetailsContent.test.tsx (6 tests) 43ms
 ✓ src/components/Visualization/Canvas/CanvasSideBar.test.tsx (3 tests) 132ms
 ✓ src/components/Visualization/ContextToolbar/FlowClipboard/FlowClipboard.test.tsx (7 tests) 84ms
 ✓ src/components/Visualization/Custom/ContextMenu/ItemHideOtherFlows.test.tsx (3 tests) 90ms
 ✓ src/components/RenderingAnchor/RenderingAnchor.test.tsx (4 tests) 30ms
 ✓ src/components/Visualization/EmptyState/VisualizationEmptyState.test.tsx (4 tests) 63ms
 ✓ src/hooks/undo-redo.hook.test.ts (5 tests) 60ms
 ✓ src/pages/RestDslEditor/components/RestDslFormHeader.test.tsx (4 tests) 248ms
 ✓ src/models/camel/kamelet-binding-resource.test.ts (5 tests) 7ms
 ✓ src/utils/update-ids.test.ts (6 tests) 6ms
 ✓ src/xml-schema-ts/extensions/ExtensionRegistry.test.ts (4 tests) 13ms
stdout | src/external/RouteVisualization/RouteVisualization.test.tsx > RouteVisualization > renders the canvas from the code prop without throwing
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]
[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: [REDACTED:email]

 ✓ src/external/RouteVisualization/RouteVisualization.test.tsx (1 test) 2998ms
     ✓ renders the canvas from the code prop without throwing  384ms
 ✓ src/models/settings/localstorage-settings-adapter.test.ts (4 tests) 6ms
 ✓ src/components/Visualization/ContextToolbar/ExportDocument/ExportDocument.test.tsx (1 test) 340ms
     ✓ should be render  337ms
 ✓ src/components/registers/group-auto-startup.activationfn.test.ts (9 tests) 6ms
 ✓ src/pages/PipeErrorHandler/PipeErrorHandlerPage.test.tsx (3 tests) 3104ms
 ✓ src/models/visualization/flows/nodes/resolvers/icon-resolver/getIconRequest.test.ts (5 tests) 7ms
 ✓ src/models/datamapper/visualization.test.ts (5 tests) 6ms
 ✓ src/multiplying-architecture/EditService.test.ts (8 tests) 13ms
 ✓ src/components/Visualization/Custom/ContextMenu/ItemMoveStep.test.tsx (3 tests) 51ms
 ✓ src/models/visualization/flows/nodes/root-node-mapper.test.ts (5 tests) 17ms
 ✓ src/serializers/xml/parsers/rest-xml-parser.test.ts (2 tests) 2913ms
 ✓ src/pages/RestDslImport/RestDslImportPage.test.tsx (4 tests) 404ms
 ✓ src/models/camel/parsers/to.parser.test.ts (6 tests) 4510ms
     ✓ should return a valid To object for direct:my-exit-route  2871ms
     ✓ should return a valid To object for direct:my-exit-route?name=my-exit-route  479ms
     ✓ should return a valid To object for { uri: 'direct', parameters: { name: 'route-66' } }  367ms
stdout | src/pages/Metadata/MetadataPage.test.tsx > MetadataPage > renders the KaotoForm when the resource type is supported
unknown format "date-time" ignored in schema at path "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
unknown format "date-time" ignored in schema at path "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
unknown format "int64" ignored in schema at path "#/properties/deletionGracePeriodSeconds"
unknown format "int64" ignored in schema at path "#/properties/deletionGracePeriodSeconds"
unknown format "date-time" ignored in schema at path "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
unknown format "date-time" ignored in schema at path "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
unknown format "int64" ignored in schema at path "#/properties/generation"
unknown format "int64" ignored in schema at path "#/properties/generation"
unknown format "date-time" ignored in schema at path "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
unknown format "date-time" ignored in schema at path "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"

stdout | src/pages/Metadata/MetadataPage.test.tsx > MetadataPage > calls updateSourceCodeFromEntities when the model changes
unknown format "date-time" ignored in schema at path "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
unknown format "date-time" ignored in schema at path "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
unknown format "int64" ignored in schema at path "#/properties/deletionGracePeriodSeconds"
unknown format "int64" ignored in schema at path "#/properties/deletionGracePeriodSeconds"
unknown format "date-time" ignored in schema at path "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
unknown format "date-time" ignored in schema at path "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
unknown format "int64" ignored in schema at path "#/properties/generation"
unknown format "int64" ignored in schema at path "#/properties/generation"
unknown format "date-time" ignored in schema at path "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
unknown format "date-time" ignored in schema at path "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"

 ✓ src/pages/Metadata/MetadataPage.test.tsx (3 tests) 3347ms
     ✓ calls updateSourceCodeFromEntities when the model changes  396ms
 ✓ src/services/document/xml-schema/xml-schema-document.service.abstract-repeated-ref.test.ts (1 test) 31ms
 ✓ src/models/visualization/flows/nodes/resolvers/tooltip-resolver/getProcessorIconTooltipRequest.test.ts (7 tests) 5ms
 ✓ src/utils/color-scheme.test.ts (7 tests) 20ms
 ✓ src/providers/visible-flows.provider.test.tsx (2 tests) 37ms
 ✓ src/components/Visualization/Custom/ContextMenu/ItemPasteStep.test.tsx (3 tests) 51ms
 ✓ src/camel-utils/camel-random-id.test.ts (5 tests) 21ms
 ✓ src/components/Visualization/Custom/ContextMenu/ItemDuplicateStep.test.tsx (3 tests) 82ms
 ✓ src/components/DataMapper/on-copy-datamapper.test.ts (3 tests) 12ms
 ✓ src/hooks/useRuntimeContext/useRuntimeContext.test.tsx (2 tests) 29ms
 ✓ src/components/XPath/XPathEditorModal.test.tsx (2 tests) 1418ms
     ✓ should render  769ms
     ✓ should show popover when hint button is clicked  647ms
 ✓ src/providers/dnd/DataMapperDndMonitor.test.tsx (5 tests) 25ms
 ✓ src/models/visualization/flows/nodes/resolvers/tooltip-resolver/processor-icon-tooltip-resolver.test.ts (3 tests) 8ms
 ✓ src/components/Document/actions/DeleteParameterButton.test.tsx (1 test) 95ms
 ✓ src/components/Visualization/Custom/hooks/use-graph-layout.hook.test.ts (4 tests) 19ms
 ✓ src/components/LoadDefaultCatalog/LoadDefaultCatalog.test.tsx (3 tests) 56ms
 ✓ src/layout/Shell.test.tsx (7 tests) 52ms
 ✓ src/providers/data-mapping-links.provider.test.tsx (4 tests) 64ms
 ✓ src/hooks/local-storage.hook.test.ts (13 tests) 51ms
 ✓ src/models/camel/source-schema-type.test.ts (31 tests) 9ms
 ✓ src/models/visualization/flows/nodes/node-mapper.service.test.ts (1 test) 8ms
 ✓ src/components/Document/document-node.utils.test.ts (4 tests) 8ms
 ✓ src/components/ErrorBoundary/ErrorBoundary.test.tsx (3 tests) 168ms
 ✓ src/multiplying-architecture/Bridge/KaotoBridge.test.tsx (2 tests) 26ms
 ✓ src/components/MetadataEditor/TopmostArrayTable.test.tsx (2 tests) 70ms
 ✓ src/providers/keyboard-shortcuts.provider.test.tsx (3 tests) 25ms
 ✓ src/services/parsers/misc-parser.test.ts (1 test) 7ms
 ✓ src/components/PropertiesModal/Tables/PropertiesTableTree.test.tsx (2 tests) 152ms
 ✓ src/components/Visualization/Custom/hooks/copy-step.hook.test.tsx (2 tests) 21ms
 ✓ src/components/Catalog/Tags/CatalogTagsPanel.test.tsx (4 tests) 100ms
 ✓ src/models/visualization/flows/support/kamelet-schema.service.test.ts (4 tests) 4164ms
       ✓ should return the source for the source label  3117ms
       ✓ should return the  for the steps.0 label  387ms
       ✓ should return the beer-source for the source label  372ms
 ✓ src/utils/get-serialized-model.test.ts (3 tests) 4ms
 ✓ src/components/Visualization/Custom/target-anchor.test.ts (3 tests) 5ms
 ✓ src/components/Document/actions/XPathEditorAction.test.tsx (1 test) 1039ms
     ✓ should open xpath editor modal  1037ms
 ✓ src/utils/version-compare.test.ts (5 tests) 19ms
 ✓ src/utils/promise-timeout.test.ts (4 tests) 8ms
 ✓ src/components/Catalog/sort-tags.test.ts (3 tests) 4ms
 ✓ src/models/visualization/flows/nodes/mappers/when-node-mapper.test.ts (1 test) 6ms
 ✓ src/utils/is-raw-string.test.ts (8 tests) 4ms
 ✓ src/providers/source-code-sync.test.tsx (3 tests) 43ms
 ✓ src/components/Document/actions/DocumentActions.test.tsx (2 tests) 140ms
 ✓ src/models/visualization/flows/nodes/mappers/otherwise-node-mapper.test.ts (1 test) 7ms
 ✓ src/utils/set-value.test.ts (7 tests) 5ms
 ✓ src/utils/yaml-comments.test.ts (4 tests) 6ms
 ✓ src/serializers/xml/utils/xml-formatter.test.ts (5 tests) 3ms
 ✓ src/pages/RestDslEditor/components/MethodBadge.test.tsx (7 tests) 48ms
 ✓ src/services/xpath/2.0/xpath-2.0-parser.test.ts (2 tests) 67ms
 ✓ src/providers/reload.provider.test.tsx (3 tests) 44ms
 ✓ src/xml-schema-ts/utils/ObjectMap.test.ts (2 tests) 4ms
 ✓ src/models/visualization/flows/nodes/mappers/on-fallback-node-mapper.test.ts (1 test) 10ms
 ✓ src/components/Visualization/Custom/ContextMenu/ItemCopyStep.test.tsx (2 tests) 51ms
 ↓ src/xml-schema-ts/xml-parser.test.ts (2 tests | 2 skipped)
 ✓ src/utils/is-same-array.test.ts (7 tests) 4ms
 ✓ src/hooks/previous.hook.test.ts (4 tests) 20ms
 ✓ src/models/citrus/citrus-test-resource-factory.test.ts (4 tests) 4ms
 ✓ src/components/Visualization/Canvas/Form/suggestions/suggestions/sql.suggestions.test.ts (7 tests) 6ms
 ✓ src/stubs/test-load-catalog.test.ts (2 tests) 2802ms
     ✓ should load Camel catalog  2756ms
 ✓ src/components/Catalog/Tile.test.tsx (2 tests) 63ms
 ✓ src/hooks/useEntityContext/useEntityContext.test.tsx (2 tests) 33ms
 ✓ src/components/registers/datamapper.activationfn.test.ts (3 tests) 4ms
 ✓ src/utils/is-datamapper.test.ts (3 tests) 3ms
 ✓ src/components/Catalog/DataListItem.test.tsx (2 tests) 68ms
 ✓ src/utils/get-value.test.ts (4 tests) 4ms
 ✓ src/utils/processor-icon.test.ts (6 tests) 4ms
 ✓ src/providers/settings.provider.test.tsx (1 test) 38ms
 ✓ src/assets/data-mapper/field-icons/Repeat0Icon.test.tsx (3 tests) 76ms
 ✓ src/hooks/useKaotoResourceContext/useKaotoResourceContext.test.tsx (2 tests) 30ms
 ✓ src/utils/get-initial-layout.test.ts (4 tests) 3ms
 ✓ src/assets/data-mapper/field-icons/Repeat1Icon.test.tsx (3 tests) 42ms
 ✓ src/assets/data-mapper/field-icons/OptIcon.test.tsx (3 tests) 62ms
 ✓ src/utils/init-visible-flows.test.ts (3 tests) 4ms
 ✓ src/components/Document/actions/RenameButton.test.tsx (2 tests) 83ms
 ✓ src/components/Icons/RuntimeIcon.test.tsx (11 tests) 155ms
 ✓ src/hooks/useReloadContext/useReloadContext.test.tsx (2 tests) 14ms
 ✓ src/components/Document/NodeTitle/NodeTitleText.test.tsx (2 tests) 26ms
 ✓ src/layout/Navigation.test.tsx (5 tests) 181ms
 ✓ src/components/Catalog/CatalogLayoutIcon.test.tsx (3 tests) 24ms
 ✓ src/components/registers/component-mode.activationfn.test.ts (7 tests) 3ms
 ✓ src/utils/event-notifier.test.ts (2 tests) 18ms
 ✓ src/tests/nodes-edges.test.ts (1 test) 53ms
 ✓ src/components/Visualization/Custom/FloatingCircle/FloatingCircle.test.tsx (3 tests) 23ms
 ✓ src/components/InlineEdit/min-length-validator.test.ts (2 tests) 3ms
 ✓ src/utils/get-array-property.test.ts (3 tests) 15ms
 ✓ src/utils/is-xslt-component.test.ts (7 tests) 13ms
 ✓ src/models/visualization/metadata/beansEntity.test.ts (6 tests) 4ms
 ✓ src/components/Visualization/Canvas/Form/CanvasFormHeader.test.tsx (1 test) 47ms
 ✓ src/components/DataMapper/debug/DataMapperDebugger.test.tsx (1 test) 182ms
 ✓ src/App.test.tsx (1 test) 52ms
 ✓ src/components/Visualization/Custom/UnknownNode.test.tsx (2 tests) 82ms
 ✓ src/models/visualization/flows/nodes/mappers/loadbalance-node-mapper.test.ts (1 test) 3ms
 ✓ src/models/visualization/flows/nodes/mappers/multicast-node-mapper.test.ts (1 test) 3ms
 ✓ src/pages/Design/ReturnToSourceCodeFallback/ReturnToSourceCodeFallback.test.tsx (1 test) 49ms
 ✓ src/utils/get-parsed-value.test.ts (10 tests) 4ms
 ✓ src/models/visualization/metadata/pipeErrorHandlerEntity.test.ts (1 test) 4ms
 ✓ src/utils/is-to-processor.test.ts (5 tests) 4ms
 ✓ src/components/Visualization/CanvasFallback/CanvasFallback.test.tsx (1 test) 37ms
stdout | src/components/Visualization/Canvas/Form/Tests/Form.kamelets.200-end.test.tsx > Form: kamelet - [200 - undefined] > should render the form without an error
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/webhookUrl"
unknown format "password" ignored in schema at path "#/properties/webhookUrl"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/authorizationToken"
unknown format "password" ignored in schema at path "#/properties/authorizationToken"
unknown format "password" ignored in schema at path "#/properties/authorizationToken"
unknown format "password" ignored in schema at path "#/properties/authorizationToken"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/apiKeySecret"
unknown format "password" ignored in schema at path "#/properties/apiKeySecret"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessTokenSecret"
unknown format "password" ignored in schema at path "#/properties/accessTokenSecret"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/apiKeySecret"
unknown format "password" ignored in schema at path "#/properties/apiKeySecret"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessTokenSecret"
unknown format "password" ignored in schema at path "#/properties/accessTokenSecret"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/apiKeySecret"
unknown format "password" ignored in schema at path "#/properties/apiKeySecret"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessTokenSecret"
unknown format "password" ignored in schema at path "#/properties/accessTokenSecret"

 ✓ src/components/Visualization/Canvas/Form/Tests/Form.kamelets.200-end.test.tsx (2 tests) 4282ms
     ✓ should render the form without an error  1694ms
stdout | src/components/Visualization/Canvas/Form/Tests/Form.components.300-end.test.tsx > Form: component - [300 - undefined] > should render the form without an error
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "bean:io.qdrant.client.grpc.Common.Filter" ignored in schema at path "#/properties/filter"
unknown format "bean:io.qdrant.client.grpc.Common.Filter" ignored in schema at path "#/properties/filter"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "bean:javax.xml.transform.Templates" ignored in schema at path "#/properties/rules"
unknown format "bean:javax.xml.transform.Templates" ignored in schema at path "#/properties/rules"
unknown format "bean:javax.xml.transform.URIResolver" ignored in schema at path "#/properties/uriResolver"
unknown format "bean:javax.xml.transform.URIResolver" ignored in schema at path "#/properties/uriResolver"
unknown format "bean:org.apache.camel.support.jsse.SSLContextParameters" ignored in schema at path "#/properties/sslContextParameters"
unknown format "bean:org.apache.camel.support.jsse.SSLContextParameters" ignored in schema at path "#/properties/sslContextParameters"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "bean:org.springframework.ai.embedding.EmbeddingModel" ignored in schema at path "#/properties/embeddingModel"
unknown format "bean:org.springframework.ai.embedding.EmbeddingModel" ignored in schema at path "#/properties/embeddingModel"
unknown format "bean:org.springframework.ai.image.ImageModel" ignored in schema at path "#/properties/imageModel"
unknown format "bean:org.springframework.ai.image.ImageModel" ignored in schema at path "#/properties/imageModel"
unknown format "bean:org.springframework.batch.core.launch.JobLauncher" ignored in schema at path "#/properties/jobLauncher"
unknown format "bean:org.springframework.batch.core.launch.JobLauncher" ignored in schema at path "#/properties/jobLauncher"
unknown format "bean:org.springframework.batch.core.configuration.JobRegistry" ignored in schema at path "#/properties/jobRegistry"
unknown format "bean:org.springframework.batch.core.configuration.JobRegistry" ignored in schema at path "#/properties/jobRegistry"
unknown format "bean:javax.sql.DataSource" ignored in schema at path "#/properties/dataSource"
unknown format "bean:javax.sql.DataSource" ignored in schema at path "#/properties/dataSource"
unknown format "bean:org.eclipse.tahu.message.model.SparkplugBPayloadMap" ignored in schema at path "#/properties/metricDataTypePayloadMap"
unknown format "bean:org.eclipse.tahu.message.model.SparkplugBPayloadMap" ignored in schema at path "#/properties/metricDataTypePayloadMap"
unknown format "bean:org.apache.camel.spi.HeaderFilterStrategy" ignored in schema at path "#/properties/headerFilterStrategy"
unknown format "bean:org.apache.camel.spi.HeaderFilterStrategy" ignored in schema at path "#/properties/headerFilterStrategy"
unknown format "bean:org.eclipse.tahu.message.BdSeqManager" ignored in schema at path "#/properties/bdSeqManager"
unknown format "bean:org.eclipse.tahu.message.BdSeqManager" ignored in schema at path "#/properties/bdSeqManager"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "bean:org.apache.camel.support.jsse.SSLContextParameters" ignored in schema at path "#/properties/sslContextParameters"
unknown format "bean:org.apache.camel.support.jsse.SSLContextParameters" ignored in schema at path "#/properties/sslContextParameters"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "bean:org.apache.camel.support.[REDACTED:jwt]" ignored in schema at path "#/properties/errorHandler"
unknown format "bean:org.apache.camel.support.[REDACTED:jwt]" ignored in schema at path "#/properties/errorHandler"
unknown format "bean:org.w3c.dom.ls.LSResourceResolver" ignored in schema at path "#/properties/resourceResolver"
unknown format "bean:org.w3c.dom.ls.LSResourceResolver" ignored in schema at path "#/properties/resourceResolver"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/resourceResolverFactory"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/resourceResolverFactory"
unknown format "bean:javax.xml.validation.SchemaFactory" ignored in schema at path "#/properties/schemaFactory"
unknown format "bean:javax.xml.validation.SchemaFactory" ignored in schema at path "#/properties/schemaFactory"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "bean:java.net.http.HttpClient" ignored in schema at path "#/properties/httpClient"
unknown format "bean:java.net.http.HttpClient" ignored in schema at path "#/properties/httpClient"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/whatsappService"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/whatsappService"
unknown format "password" ignored in schema at path "#/properties/authorizationToken"
unknown format "password" ignored in schema at path "#/properties/authorizationToken"
unknown format "bean:javax.xml.crypto.AlgorithmMethod" ignored in schema at path "#/properties/canonicalizationMethod"
unknown format "bean:javax.xml.crypto.AlgorithmMethod" ignored in schema at path "#/properties/canonicalizationMethod"
unknown format "bean:org.apache.camel.component.xmlsecurity.api.KeyAccessor" ignored in schema at path "#/properties/keyAccessor"
unknown format "bean:org.apache.camel.component.xmlsecurity.api.KeyAccessor" ignored in schema at path "#/properties/keyAccessor"
unknown format "bean:javax.xml.crypto.dsig.spec.XPathFilterParameterSpec" ignored in schema at path "#/properties/parentXpath"
unknown format "bean:javax.xml.crypto.dsig.spec.XPathFilterParameterSpec" ignored in schema at path "#/properties/parentXpath"
unknown format "bean:org.apache.camel.component.xmlsecurity.api.XmlSignatureProperties" ignored in schema at path "#/properties/properties"
unknown format "bean:org.apache.camel.component.xmlsecurity.api.XmlSignatureProperties" ignored in schema at path "#/properties/properties"
unknown format "bean:javax.xml.crypto.URIDereferencer" ignored in schema at path "#/properties/uriDereferencer"
unknown format "bean:javax.xml.crypto.URIDereferencer" ignored in schema at path "#/properties/uriDereferencer"
unknown format "bean:javax.xml.crypto.KeySelector" ignored in schema at path "#/properties/keySelector"
unknown format "bean:javax.xml.crypto.KeySelector" ignored in schema at path "#/properties/keySelector"
unknown format "bean:java.lang.Object" ignored in schema at path "#/properties/outputNodeSearch"
unknown format "bean:java.lang.Object" ignored in schema at path "#/properties/outputNodeSearch"
unknown format "bean:org.apache.camel.component.xmlsecurity.api.ValidationFailedHandler" ignored in schema at path "#/properties/validationFailedHandler"
unknown format "bean:org.apache.camel.component.xmlsecurity.api.ValidationFailedHandler" ignored in schema at path "#/properties/validationFailedHandler"
unknown format "bean:org.apache.camel.component.xmlsecurity.api.XmlSignature2Message" ignored in schema at path "#/properties/xmlSignature2Message"
unknown format "bean:org.apache.camel.component.xmlsecurity.api.XmlSignature2Message" ignored in schema at path "#/properties/xmlSignature2Message"
unknown format "bean:org.apache.camel.component.xmlsecurity.api.XmlSignatureChecker" ignored in schema at path "#/properties/xmlSignatureChecker"
unknown format "bean:org.apache.camel.component.xmlsecurity.api.XmlSignatureChecker" ignored in schema at path "#/properties/xmlSignatureChecker"
unknown format "bean:javax.xml.crypto.URIDereferencer" ignored in schema at path "#/properties/uriDereferencer"
unknown format "bean:javax.xml.crypto.URIDereferencer" ignored in schema at path "#/properties/uriDereferencer"

 ✓ src/components/Visualization/Canvas/Form/Tests/Form.components.300-end.test.tsx (2 tests) 4722ms
     ✓ should render the form without an error  2139ms
stdout | src/components/Visualization/Canvas/Form/Tests/Form.components.100-150.test.tsx > Form: component - [100 - 150] > should render the form without an error
unknown format "bean:[REDACTED:jwt]" ignored in schema at path "#/properties/configuration"
unknown format "bean:[REDACTED:jwt]" ignored in schema at path "#/properties/configuration"
unknown format "bean:org.apache.camel.component.google.bigquery.GoogleBigQueryConnectionFactory" ignored in schema at path "#/properties/connectionFactory"
unknown format "bean:org.apache.camel.component.google.bigquery.GoogleBigQueryConnectionFactory" ignored in schema at path "#/properties/connectionFactory"
unknown format "bean:com.google.cloud.speech.v1.SpeechClient" ignored in schema at path "#/properties/client"
unknown format "bean:com.google.cloud.speech.v1.SpeechClient" ignored in schema at path "#/properties/client"
unknown format "bean:com.google.cloud.texttospeech.v1.TextToSpeechClient" ignored in schema at path "#/properties/client"
unknown format "bean:com.google.cloud.texttospeech.v1.TextToSpeechClient" ignored in schema at path "#/properties/client"
unknown format "bean:com.google.cloud.vision.v1.ImageAnnotatorClient" ignored in schema at path "#/properties/client"
unknown format "bean:com.google.cloud.vision.v1.ImageAnnotatorClient" ignored in schema at path "#/properties/client"
unknown format "bean:org.apache.camel.spi.HeaderFilterStrategy" ignored in schema at path "#/properties/headerFilterStrategy"
unknown format "bean:org.apache.camel.spi.HeaderFilterStrategy" ignored in schema at path "#/properties/headerFilterStrategy"
unknown format "bean:org.apache.camel.util.json.JsonObject" ignored in schema at path "#/properties/variables"
unknown format "bean:org.apache.camel.util.json.JsonObject" ignored in schema at path "#/properties/variables"
unknown format "bean:org.apache.hc.client5.http.classic.HttpClient" ignored in schema at path "#/properties/httpClient"
unknown format "bean:org.apache.hc.client5.http.classic.HttpClient" ignored in schema at path "#/properties/httpClient"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "password" ignored in schema at path "#/properties/username"

 ✓ src/components/Visualization/Canvas/Form/Tests/Form.components.100-150.test.tsx (2 tests) 3360ms
     ✓ should render the form without an error  1078ms
stdout | src/components/Visualization/Canvas/Form/Tests/Form.eips.000-end.test.tsx > Form: pattern - [0 - undefined] > should render the form without an error
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:org.apache.camel.spi.IdempotentRepository" ignored in schema at path "#/properties/idempotentRepository"
unknown format "bean:org.apache.camel.spi.IdempotentRepository" ignored in schema at path "#/properties/idempotentRepository"
unknown format "bean:org.apache.camel.resume.ResumeStrategy" ignored in schema at path "#/properties/resumeStrategy"
unknown format "bean:org.apache.camel.resume.ResumeStrategy" ignored in schema at path "#/properties/resumeStrategy"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepare"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepare"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepare"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepare"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepare"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepare"
unknown format "bean:java.security.Key" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/key"
unknown format "bean:java.security.Key" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/key"
unknown format "bean:java.security.spec.AlgorithmParameterSpec" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/algorithmParameterSpec"
unknown format "bean:java.security.spec.AlgorithmParameterSpec" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/algorithmParameterSpec"
unknown format "bean:net.sf.flatpack.ParserFactory" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.FlatpackDataFormat/properties/parserFactory"
unknown format "bean:net.sf.flatpack.ParserFactory" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.FlatpackDataFormat/properties/parserFactory"
unknown format "bean:ca.uhn.hl7v2.parser.Parser" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.HL7DataFormat/properties/parser"
unknown format "bean:ca.uhn.hl7v2.parser.Parser" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.HL7DataFormat/properties/parser"
unknown format "bean:org.apache.camel.component.jackson.SchemaResolver" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.JsonDataFormat/properties/schemaResolver"
unknown format "bean:org.apache.camel.component.jackson.SchemaResolver" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.JsonDataFormat/properties/schemaResolver"
unknown format "bean:java.security.KeyPair" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyPair"
unknown format "bean:java.security.KeyPair" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyPair"
unknown format "bean:javax.crypto.KeyGenerator" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyGenerator"
unknown format "bean:javax.crypto.KeyGenerator" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyGenerator"
unknown format "bean:org.apache.camel.dataformat.soap.name.ElementNameStrategy" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SoapDataFormat/properties/elementNameStrategy"
unknown format "bean:org.apache.camel.dataformat.soap.name.ElementNameStrategy" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SoapDataFormat/properties/elementNameStrategy"
unknown format "bean:com.prowidesoftware.swift.model.MxId" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readMessageId"
unknown format "bean:com.prowidesoftware.swift.model.MxId" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readMessageId"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxReadConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxReadConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxWriteConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/writeConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxWriteConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/writeConfig"
unknown format "binary" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/passPhraseByte"
unknown format "binary" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/passPhraseByte"
unknown format "bean:org.apache.camel.support.jsse.KeyStoreParameters" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/keyOrTrustStoreParameters"
unknown format "bean:org.apache.camel.support.jsse.KeyStoreParameters" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/keyOrTrustStoreParameters"
unknown format "dataFormatType" ignored in schema at path "#/anyOf/0"
unknown format "dataFormatType" ignored in schema at path "#/anyOf/0"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/definitions/org.apache.camel.model.Resilience4jConfigurationDefinition/properties/timeoutExecutorService"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/definitions/org.apache.camel.model.Resilience4jConfigurationDefinition/properties/timeoutExecutorService"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.FaultToleranceConfigurationDefinition/properties/delay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.FaultToleranceConfigurationDefinition/properties/delay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.FaultToleranceConfigurationDefinition/properties/timeoutDuration"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.FaultToleranceConfigurationDefinition/properties/timeoutDuration"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/definitions/org.apache.camel.model.FaultToleranceConfigurationDefinition/properties/threadOffloadExecutorService"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/definitions/org.apache.camel.model.FaultToleranceConfigurationDefinition/properties/threadOffloadExecutorService"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "bean:org.apache.camel.saga.CamelSagaService" ignored in schema at path "#/properties/sagaService"
unknown format "bean:org.apache.camel.saga.CamelSagaService" ignored in schema at path "#/properties/sagaService"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:java.util.Comparator" ignored in schema at path "#/properties/comparator"
unknown format "bean:java.util.Comparator" ignored in schema at path "#/properties/comparator"
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "loadBalancerType" ignored in schema at path "#/anyOf/0"
unknown format "loadBalancerType" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:org.apache.camel.resume.ConsumerListener" ignored in schema at path "#/properties/consumerListener"
unknown format "bean:org.apache.camel.resume.ConsumerListener" ignored in schema at path "#/properties/consumerListener"
unknown format "bean:java.util.function.Predicate" ignored in schema at path "#/properties/untilCheck"
unknown format "bean:java.util.function.Predicate" ignored in schema at path "#/properties/untilCheck"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "duration" ignored in schema at path "#/properties/timePeriodMillis"
unknown format "duration" ignored in schema at path "#/properties/timePeriodMillis"
unknown format "bean:org.slf4j.Logger" ignored in schema at path "#/properties/logger"
unknown format "bean:org.slf4j.Logger" ignored in schema at path "#/properties/logger"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "expressionProperty" ignored in schema at path "#/properties/correlationExpression"
unknown format "expressionProperty" ignored in schema at path "#/properties/completionPredicate"
unknown format "expressionProperty" ignored in schema at path "#/properties/completionPredicate"
unknown format "expressionProperty" ignored in schema at path "#/properties/completionTimeoutExpression"
unknown format "expressionProperty" ignored in schema at path "#/properties/completionTimeoutExpression"
unknown format "expressionProperty" ignored in schema at path "#/properties/completionSizeExpression"
unknown format "expressionProperty" ignored in schema at path "#/properties/completionSizeExpression"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.OptimisticLockRetryPolicyDefinition/properties/retryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.OptimisticLockRetryPolicyDefinition/properties/retryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.OptimisticLockRetryPolicyDefinition/properties/maximumRetryDelay"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.OptimisticLockRetryPolicyDefinition/properties/maximumRetryDelay"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/timeoutCheckerExecutorService"
unknown format "bean:java.util.concurrent.ScheduledExecutorService" ignored in schema at path "#/properties/timeoutCheckerExecutorService"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/aggregateController"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/aggregateController"
unknown format "bean:org.apache.camel.spi.AggregationRepository" ignored in schema at path "#/properties/aggregationRepository"
unknown format "bean:org.apache.camel.spi.AggregationRepository" ignored in schema at path "#/properties/aggregationRepository"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "duration" ignored in schema at path "#/properties/completionInterval"
unknown format "duration" ignored in schema at path "#/properties/completionInterval"
unknown format "duration" ignored in schema at path "#/properties/completionTimeout"
unknown format "duration" ignored in schema at path "#/properties/completionTimeout"
unknown format "duration" ignored in schema at path "#/properties/completionTimeoutCheckerInterval"
unknown format "duration" ignored in schema at path "#/properties/completionTimeoutCheckerInterval"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.config.BatchResequencerConfig/properties/batchTimeout"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.config.BatchResequencerConfig/properties/batchTimeout"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.config.StreamResequencerConfig/properties/timeout"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.config.StreamResequencerConfig/properties/timeout"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.config.StreamResequencerConfig/properties/deliveryAttemptInterval"
unknown format "duration" ignored in schema at path "#/definitions/org.apache.camel.model.config.StreamResequencerConfig/properties/deliveryAttemptInterval"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/definitions/org.apache.camel.model.config.StreamResequencerConfig/properties/comparator"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/definitions/org.apache.camel.model.config.StreamResequencerConfig/properties/comparator"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:org.apache.camel.spi.PredicateExceptionFactory" ignored in schema at path "#/properties/predicateExceptionFactory"
unknown format "bean:org.apache.camel.spi.PredicateExceptionFactory" ignored in schema at path "#/properties/predicateExceptionFactory"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "duration" ignored in schema at path "#/properties/samplePeriod"
unknown format "duration" ignored in schema at path "#/properties/samplePeriod"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "bean:org.apache.camel.AggregationStrategy" ignored in schema at path "#/properties/aggregationStrategy"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepare"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepare"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "expression" ignored in schema at path "#/anyOf/0"
unknown format "bean:java.security.Key" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/key"
unknown format "bean:java.security.Key" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/key"
unknown format "bean:java.security.spec.AlgorithmParameterSpec" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/algorithmParameterSpec"
unknown format "bean:java.security.spec.AlgorithmParameterSpec" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.CryptoDataFormat/properties/algorithmParameterSpec"
unknown format "bean:net.sf.flatpack.ParserFactory" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.FlatpackDataFormat/properties/parserFactory"
unknown format "bean:net.sf.flatpack.ParserFactory" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.FlatpackDataFormat/properties/parserFactory"
unknown format "bean:ca.uhn.hl7v2.parser.Parser" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.HL7DataFormat/properties/parser"
unknown format "bean:ca.uhn.hl7v2.parser.Parser" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.HL7DataFormat/properties/parser"
unknown format "bean:org.apache.camel.component.jackson.SchemaResolver" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.JsonDataFormat/properties/schemaResolver"
unknown format "bean:org.apache.camel.component.jackson.SchemaResolver" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.JsonDataFormat/properties/schemaResolver"
unknown format "bean:java.security.KeyPair" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyPair"
unknown format "bean:java.security.KeyPair" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyPair"
unknown format "bean:javax.crypto.KeyGenerator" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyGenerator"
unknown format "bean:javax.crypto.KeyGenerator" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.PQCDataFormat/properties/keyGenerator"
unknown format "bean:org.apache.camel.dataformat.soap.name.ElementNameStrategy" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SoapDataFormat/properties/elementNameStrategy"
unknown format "bean:org.apache.camel.dataformat.soap.name.ElementNameStrategy" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SoapDataFormat/properties/elementNameStrategy"
unknown format "bean:com.prowidesoftware.swift.model.MxId" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readMessageId"
unknown format "bean:com.prowidesoftware.swift.model.MxId" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readMessageId"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxReadConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxReadConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/readConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxWriteConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/writeConfig"
unknown format "bean:com.prowidesoftware.swift.model.mx.MxWriteConfiguration" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.SwiftMxDataFormat/properties/writeConfig"
unknown format "binary" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/passPhraseByte"
unknown format "binary" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/passPhraseByte"
unknown format "bean:org.apache.camel.support.jsse.KeyStoreParameters" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/keyOrTrustStoreParameters"
unknown format "bean:org.apache.camel.support.jsse.KeyStoreParameters" ignored in schema at path "#/definitions/org.apache.camel.model.dataformat.XMLSecurityDataFormat/properties/keyOrTrustStoreParameters"
unknown format "dataFormatType" ignored in schema at path "#/anyOf/0"
unknown format "dataFormatType" ignored in schema at path "#/anyOf/0"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepare"
unknown format "bean:org.apache.camel.Processor" ignored in schema at path "#/properties/onPrepare"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"
unknown format "bean:java.util.concurrent.ExecutorService" ignored in schema at path "#/properties/executorService"

 ✓ src/components/Visualization/Canvas/Form/Tests/Form.eips.000-end.test.tsx (2 tests) 4838ms
     ✓ should render the form without an error  2510ms
stdout | src/components/Visualization/Canvas/Form/Tests/Form.components.150-200.test.tsx > Form: component - [150 - 200] > should render the form without an error
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/proxyPassword"
unknown format "password" ignored in schema at path "#/properties/proxyPassword"
unknown format "password" ignored in schema at path "#/properties/proxyUser"
unknown format "password" ignored in schema at path "#/properties/proxyUser"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "bean:org.apache.camel.component.huaweicloud.common.models.ServiceKeys|password" ignored in schema at path "#/properties/serviceKeys"
unknown format "bean:org.apache.camel.component.huaweicloud.common.models.ServiceKeys|password" ignored in schema at path "#/properties/serviceKeys"
unknown format "bean:org.apache.camel.component.huaweicloud.common.models.ServiceKeys|password" ignored in schema at path "#/properties/serviceKeys"
unknown format "bean:org.apache.camel.component.huaweicloud.common.models.ServiceKeys|password" ignored in schema at path "#/properties/serviceKeys"
unknown format "password" ignored in schema at path "#/properties/proxyPassword"
unknown format "password" ignored in schema at path "#/properties/proxyPassword"
unknown format "password" ignored in schema at path "#/properties/proxyUser"
unknown format "password" ignored in schema at path "#/properties/proxyUser"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/groupId"
unknown format "password" ignored in schema at path "#/properties/groupId"
unknown format "password" ignored in schema at path "#/properties/proxyPassword"
unknown format "password" ignored in schema at path "#/properties/proxyPassword"
unknown format "password" ignored in schema at path "#/properties/proxyUser"
unknown format "password" ignored in schema at path "#/properties/proxyUser"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "bean:org.apache.camel.component.huaweicloud.common.models.ServiceKeys|password" ignored in schema at path "#/properties/serviceKeys"
unknown format "bean:org.apache.camel.component.huaweicloud.common.models.ServiceKeys|password" ignored in schema at path "#/properties/serviceKeys"
unknown format "password" ignored in schema at path "#/properties/userId"
unknown format "password" ignored in schema at path "#/properties/userId"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/proxyPassword"
unknown format "password" ignored in schema at path "#/properties/proxyPassword"
unknown format "password" ignored in schema at path "#/properties/proxyUser"
unknown format "password" ignored in schema at path "#/properties/proxyUser"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "bean:org.apache.camel.component.huaweicloud.common.models.ServiceKeys|password" ignored in schema at path "#/properties/serviceKeys"
unknown format "bean:org.apache.camel.component.huaweicloud.common.models.ServiceKeys|password" ignored in schema at path "#/properties/serviceKeys"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/proxyPassword"
unknown format "password" ignored in schema at path "#/properties/proxyPassword"
unknown format "password" ignored in schema at path "#/properties/proxyUser"
unknown format "password" ignored in schema at path "#/properties/proxyUser"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "bean:org.apache.camel.component.huaweicloud.common.models.ServiceKeys|password" ignored in schema at path "#/properties/serviceKeys"
unknown format "bean:org.apache.camel.component.huaweicloud.common.models.ServiceKeys|password" ignored in schema at path "#/properties/serviceKeys"

 ✓ src/components/Visualization/Canvas/Form/Tests/Form.components.150-200.test.tsx (2 tests) 3816ms
     ✓ should render the form without an error  1269ms
stdout | src/components/Visualization/Canvas/Form/Tests/Form.components.200-250.test.tsx > Form: component - [200 - 250] > should render the form without an error
unknown format "bean:com.fasterxml.jackson.databind.ObjectMapper" ignored in schema at path "#/properties/objectMapper"
unknown format "bean:com.fasterxml.jackson.databind.ObjectMapper" ignored in schema at path "#/properties/objectMapper"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/errorHandler"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/errorHandler"
unknown format "bean:com.fasterxml.jackson.databind.ObjectMapper" ignored in schema at path "#/properties/objectMapper"
unknown format "bean:com.fasterxml.jackson.databind.ObjectMapper" ignored in schema at path "#/properties/objectMapper"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/uriSchemaLoader"
unknown format "bean:org.apache.camel.[REDACTED:jwt]" ignored in schema at path "#/properties/uriSchemaLoader"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "bean:org.apache.camel.component.langchain4j.agent.api.Agent" ignored in schema at path "#/properties/agent"
unknown format "bean:org.apache.camel.component.langchain4j.agent.api.Agent" ignored in schema at path "#/properties/agent"
unknown format "bean:org.apache.camel.component.langchain4j.agent.api.AgentFactory" ignored in schema at path "#/properties/agentFactory"
unknown format "bean:org.apache.camel.component.langchain4j.agent.api.AgentFactory" ignored in schema at path "#/properties/agentFactory"
unknown format "bean:dev.langchain4j.model.embedding.EmbeddingModel" ignored in schema at path "#/properties/embeddingModel"
unknown format "bean:dev.langchain4j.model.embedding.EmbeddingModel" ignored in schema at path "#/properties/embeddingModel"

 ✓ src/components/Visualization/Canvas/Form/Tests/Form.components.200-250.test.tsx (2 tests) 3659ms
     ✓ should render the form without an error  1322ms
stdout | src/components/Visualization/Canvas/Form/Tests/Form.components.050-100.test.tsx > Form: component - [50 - 100] > should render the form without an error
unknown format "bean:jakarta.validation.ConstraintValidatorFactory" ignored in schema at path "#/properties/constraintValidatorFactory"
unknown format "bean:jakarta.validation.ConstraintValidatorFactory" ignored in schema at path "#/properties/constraintValidatorFactory"
unknown format "bean:jakarta.validation.MessageInterpolator" ignored in schema at path "#/properties/messageInterpolator"
unknown format "bean:jakarta.validation.MessageInterpolator" ignored in schema at path "#/properties/messageInterpolator"
unknown format "bean:jakarta.validation.TraversableResolver" ignored in schema at path "#/properties/traversableResolver"
unknown format "bean:jakarta.validation.TraversableResolver" ignored in schema at path "#/properties/traversableResolver"
unknown format "bean:jakarta.validation.ValidationProviderResolver" ignored in schema at path "#/properties/validationProviderResolver"
unknown format "bean:jakarta.validation.ValidationProviderResolver" ignored in schema at path "#/properties/validationProviderResolver"
unknown format "bean:jakarta.validation.ValidatorFactory" ignored in schema at path "#/properties/validatorFactory"
unknown format "bean:jakarta.validation.ValidatorFactory" ignored in schema at path "#/properties/validatorFactory"
unknown format "duration" ignored in schema at path "#/properties/assertPeriod"
unknown format "duration" ignored in schema at path "#/properties/assertPeriod"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "duration" ignored in schema at path "#/properties/timeout"
unknown format "duration" ignored in schema at path "#/properties/resultMinimumWaitTime"
unknown format "duration" ignored in schema at path "#/properties/resultMinimumWaitTime"
unknown format "duration" ignored in schema at path "#/properties/resultWaitTime"
unknown format "duration" ignored in schema at path "#/properties/resultWaitTime"
unknown format "duration" ignored in schema at path "#/properties/sleepForEmptyTest"
unknown format "duration" ignored in schema at path "#/properties/sleepForEmptyTest"

 ✓ src/components/Visualization/Canvas/Form/Tests/Form.components.050-100.test.tsx (2 tests) 4897ms
     ✓ should render the form without an error  1655ms
stdout | src/components/Visualization/Canvas/Form/Tests/Form.components.250-300.test.tsx > Form: component - [250 - 300] > should render the form without an error
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "duration" ignored in schema at path "#/properties/assertPeriod"
unknown format "duration" ignored in schema at path "#/properties/assertPeriod"
unknown format "duration" ignored in schema at path "#/properties/resultMinimumWaitTime"
unknown format "duration" ignored in schema at path "#/properties/resultMinimumWaitTime"
unknown format "duration" ignored in schema at path "#/properties/resultWaitTime"
unknown format "duration" ignored in schema at path "#/properties/resultWaitTime"
unknown format "duration" ignored in schema at path "#/properties/sleepForEmptyTest"
unknown format "duration" ignored in schema at path "#/properties/sleepForEmptyTest"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "bean:io.fabric8.kubernetes.client.KubernetesClient" ignored in schema at path "#/properties/kubernetesClient"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertData"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/caCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertData"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientCertFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyAlgo"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyData"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyFile"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/clientKeyPassphrase"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/trustCerts"
unknown format "password" ignored in schema at path "#/properties/username"
unknown format "password" ignored in schema at path "#/properties/username"

 ✓ src/components/Visualization/Canvas/Form/Tests/Form.components.250-300.test.tsx (2 tests) 5123ms
     ✓ should render the form without an error  1948ms
stdout | src/components/Visualization/Canvas/Form/Tests/Form.kamelets.100-150.test.tsx > Form: kamelet - [100 - 150] > should render the form without an error
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/refreshToken"
unknown format "password" ignored in schema at path "#/properties/refreshToken"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/refreshToken"
unknown format "password" ignored in schema at path "#/properties/refreshToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/authPassword"
unknown format "password" ignored in schema at path "#/properties/authPassword"
unknown format "password" ignored in schema at path "#/properties/oauth2ClientId"
unknown format "password" ignored in schema at path "#/properties/oauth2ClientId"
unknown format "password" ignored in schema at path "#/properties/oauth2ClientSecret"
unknown format "password" ignored in schema at path "#/properties/oauth2ClientSecret"
unknown format "password" ignored in schema at path "#/properties/authPassword"
unknown format "password" ignored in schema at path "#/properties/authPassword"
unknown format "password" ignored in schema at path "#/properties/oauth2ClientId"
unknown format "password" ignored in schema at path "#/properties/oauth2ClientId"
unknown format "password" ignored in schema at path "#/properties/oauth2ClientSecret"
unknown format "password" ignored in schema at path "#/properties/oauth2ClientSecret"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/serviceInstanceId"
unknown format "password" ignored in schema at path "#/properties/serviceInstanceId"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/serviceInstanceId"
unknown format "password" ignored in schema at path "#/properties/serviceInstanceId"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/apiKey"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/verificationCode"
unknown format "password" ignored in schema at path "#/properties/verificationCode"
unknown format "password" ignored in schema at path "#/properties/consumerKey"
unknown format "password" ignored in schema at path "#/properties/consumerKey"
unknown format "password" ignored in schema at path "#/properties/privateKey"
unknown format "password" ignored in schema at path "#/properties/privateKey"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"

 ✓ src/components/Visualization/Canvas/Form/Tests/Form.kamelets.100-150.test.tsx (2 tests) 4477ms
     ✓ should render the form without an error  1641ms
stdout | src/components/Visualization/Canvas/Form/Tests/Form.kamelets.150-200.test.tsx > Form: kamelet - [150 - 200] > should render the form without an error
unknown format "password" ignored in schema at path "#/properties/apicurioAuthClientSecret"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthClientSecret"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthPassword"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthPassword"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/saslPassword"
unknown format "password" ignored in schema at path "#/properties/saslPassword"
unknown format "password" ignored in schema at path "#/properties/oauthClientSecret"
unknown format "password" ignored in schema at path "#/properties/oauthClientSecret"
unknown format "password" ignored in schema at path "#/properties/sslTruststorePassword"
unknown format "password" ignored in schema at path "#/properties/sslTruststorePassword"
unknown format "password" ignored in schema at path "#/properties/sslKeystorePassword"
unknown format "password" ignored in schema at path "#/properties/sslKeystorePassword"
unknown format "password" ignored in schema at path "#/properties/sslKeyPassword"
unknown format "password" ignored in schema at path "#/properties/sslKeyPassword"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthClientSecret"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthClientSecret"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthPassword"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthPassword"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthClientSecret"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthClientSecret"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthPassword"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthPassword"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthClientSecret"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthClientSecret"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthPassword"
unknown format "password" ignored in schema at path "#/properties/apicurioAuthPassword"
unknown format "password" ignored in schema at path "#/properties/saslPassword"
unknown format "password" ignored in schema at path "#/properties/saslPassword"
unknown format "password" ignored in schema at path "#/properties/oauthClientSecret"
unknown format "password" ignored in schema at path "#/properties/oauthClientSecret"
unknown format "password" ignored in schema at path "#/properties/sslTruststorePassword"
unknown format "password" ignored in schema at path "#/properties/sslTruststorePassword"
unknown format "password" ignored in schema at path "#/properties/sslKeystorePassword"
unknown format "password" ignored in schema at path "#/properties/sslKeystorePassword"
unknown format "password" ignored in schema at path "#/properties/sslKeyPassword"
unknown format "password" ignored in schema at path "#/properties/sslKeyPassword"
unknown format "password" ignored in schema at path "#/properties/saslPassword"
unknown format "password" ignored in schema at path "#/properties/saslPassword"
unknown format "password" ignored in schema at path "#/properties/oauthClientSecret"
unknown format "password" ignored in schema at path "#/properties/oauthClientSecret"
unknown format "password" ignored in schema at path "#/properties/sslTruststorePassword"
unknown format "password" ignored in schema at path "#/properties/sslTruststorePassword"
unknown format "password" ignored in schema at path "#/properties/sslKeystorePassword"
unknown format "password" ignored in schema at path "#/properties/sslKeystorePassword"
unknown format "password" ignored in schema at path "#/properties/sslKeyPassword"
unknown format "password" ignored in schema at path "#/properties/sslKeyPassword"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "password" ignored in schema at path "#/properties/token"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/servers"
unknown format "password" ignored in schema at path "#/properties/servers"
unknown format "password" ignored in schema at path "#/properties/servers"
unknown format "password" ignored in schema at path "#/properties/servers"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"

 ✓ src/components/Visualization/Canvas/Form/Tests/Form.kamelets.150-200.test.tsx (2 tests) 4722ms
     ✓ should render the form without an error  2151ms
 ✓ src/stubs/read-file-as-string.test.ts (1 test) 27ms
 ✓ src/components/Visualization/Canvas/Form/Tests/Form.components.000-050.test.tsx (2 tests) 3940ms
     ✓ should render the form without an error  1312ms
stdout | src/components/Visualization/Canvas/Form/Tests/Form.kamelets.050-100.test.tsx > Form: kamelet - [50 - 100] > should render the form without an error
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/key"
unknown format "password" ignored in schema at path "#/properties/key"
unknown format "password" ignored in schema at path "#/properties/key"
unknown format "password" ignored in schema at path "#/properties/key"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/proxyPassword"
unknown format "password" ignored in schema at path "#/properties/proxyPassword"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/oauthToken"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/refreshToken"
unknown format "password" ignored in schema at path "#/properties/refreshToken"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/accessToken"
unknown format "password" ignored in schema at path "#/properties/refreshToken"
unknown format "password" ignored in schema at path "#/properties/refreshToken"

 ✓ src/components/Visualization/Canvas/Form/Tests/Form.kamelets.050-100.test.tsx (2 tests) 4296ms
     ✓ should render the form without an error  1601ms
 ✓ src/models/visualization/metadata/metadataEntity.test.ts (1 test) 3ms
 ✓ src/components/Loading/Loading.test.tsx (1 test) 79ms
stdout | src/components/Visualization/Canvas/Form/Tests/Form.kamelets.000-050.test.tsx > Form: kamelet - [0 - 50] > should render the form without an error
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/password"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/secretKey"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/sessionToken"
unknown format "password" ignored in schema at path "#/properties/accountKey"
unknown format "password" ignored in schema at path "#/properties/accountKey"
unknown format "password" ignored in schema at path "#/properties/accountKey"
unknown format "password" ignored in schema at path "#/properties/accountKey"
unknown format "password" ignored in schema at path "#/properties/sharedAccessKey"
unknown format "password" ignored in schema at path "#/properties/sharedAccessKey"
unknown format "password" ignored in schema at path "#/properties/sharedAccessKey"
unknown format "password" ignored in schema at path "#/properties/sharedAccessKey"
unknown format "password" ignored in schema at path "#/properties/blobAccessKey"
unknown format "password" ignored in schema at path "#/properties/blobAccessKey"
unknown format "password" ignored in schema at path "#/properties/key"
unknown format "password" ignored in schema at path "#/properties/key"
unknown format "password" ignored in schema at path "#/properties/connectionString"
unknown format "password" ignored in schema at path "#/properties/connectionString"
unknown format "password" ignored in schema at path "#/properties/connectionString"
unknown format "password" ignored in schema at path "#/properties/connectionString"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/connectionString"
unknown format "password" ignored in schema at path "#/properties/connectionString"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientId"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/clientSecret"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/tenantId"
unknown format "password" ignored in schema at path "#/properties/sharedKey"
unknown format "password" ignored in schema at path "#/properties/sharedKey"
unknown format "password" ignored in schema at path "#/properties/sharedKey"
unknown format "password" ignored in schema at path "#/properties/sharedKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"
unknown format "password" ignored in schema at path "#/properties/accessKey"

 ✓ src/components/Visualization/Canvas/Form/Tests/Form.kamelets.000-050.test.tsx (2 tests) 4272ms
     ✓ should render the form without an error  1783ms

 Test Files  463 passed | 1 skipped (464)
      Tests  6492 passed | 5 skipped | 2 todo (6499)
   Start at  01:00:48
   Duration  1427.46s (transform 111.98s, setup 116.33s, import 4480.37s, tests 465.58s, environment 488.24s)

Redacted stderr
=== cmd 1: corepack yarn workspace @kaoto/kaoto test src/services/document/xml-schema/xml-schema-document.service.abstract-repeated-ref.test.ts packages/ui/src/services/document/xml-schema/xml-schema-document.service.abstract-repeated-ref.test.ts --configLoader runner ===
=== cmd 2: corepack yarn workspace @kaoto/kaoto lint ===
=== cmd 3: corepack yarn workspace @kaoto/kaoto lint:style ===
=== cmd 4: corepack yarn workspace @kaoto/kaoto test --configLoader runner --maxWorkers 4 ===
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/index.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/index.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/ArrayField/index.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/ArrayField/ArrayField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/hooks/field-value.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/index.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/camel-case-to-space.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/capitalize-string.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/camel-random-id.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/get-applied-schema-index.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/weight-schemas-against-model.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/is-defined.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/resolve-schema-with-ref.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/get-field-groups.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/get-tagged-field-from-string.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/get-filtered-properties.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/get-item-from-schema.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/get-oneof-schema-list.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/get-value.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/is-raw-string.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/set-value.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/providers/ModelProvider.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/providers/SchemaProvider.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/providers/SchemaDefinitionsProvider.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/AutoField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/providers/canvas-form-tabs.provider.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/providers/context/form-component-factory-context.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/is-field-value-defined.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/ArrayField/ArrayFieldWrapper.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/ObjectField/index.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/ObjectField/ObjectField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/ObjectField/ObjectFieldGrouping.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/providers/filtered-field.provider.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/ObjectField/AnyOfField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/ObjectField/GroupFields.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/ObjectField/ObjectFieldInner.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/OneOfField/index.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/OneOfField/OneOfField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/hooks/one-of-field.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/OneOfField/SchemaList.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/Typeahead/SimpleSelector.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/Typeahead/Typeahead.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/models/popper-default.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/PropertiesField/index.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/PropertiesField/PropertiesField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/FieldWrapper.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/KeyValue/KeyValue.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/KeyValue/KeyValueField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/hooks/suggestions.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/providers/index.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/providers/FormComponentFactoryProvider.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/BooleanField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/DisabledField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/Form/customField/CustomExpandableSection.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/EnumField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/ObjectField/AllOfField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/PasswordField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/FieldActions.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/SuggestionsButton.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/StringField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/TextAreaField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/fields/IndexedValuesField/IndexedValuesField.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/KeyValue/IndexedValue.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/providers/SuggestionRegistryProvider.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/apply-suggestion.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/utils/get-cursor-word.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/hooks/index.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/KaotoForm.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/Form/NoFieldFound.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/validation/errors-mapper.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/validation/get-validator.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/models/suggestions/index.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/KeyValue/index.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/Typeahead/index.js" points to missing source files
1:01:50 AM [vite] (client) warning: "./${catalogLibraryEntry.fileName}" is not exported under the conditions ["node", "development", "import"] from package /workspace/node_modules/@kaoto/camel-catalog (see exports field in /workspace/node_modules/@kaoto/camel-catalog/package.json)
  Plugin: builtin:vite-resolve
1:01:50 AM [vite] (client) warning: "./${catalogLibraryEntry.fileName}" is not exported under the conditions ["node", "development", "import"] from package /workspace/node_modules/@kaoto/camel-catalog (see exports field in /workspace/node_modules/@kaoto/camel-catalog/package.json)
  Plugin: builtin:vite-resolve
stderr | src/components/Document/actions/FieldOverride/FieldOverrideModal.test.tsx > FieldOverrideModal > should open type selector when toggle is clicked
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > should show validation error for invalid parameter name
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > should show validation error for invalid parameter name
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > should show validation error for invalid parameter name
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > should attach and detach a schema
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > should attach JSON schema
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > should handle parameter submission with duplicate parameter check
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > should handle parameter submission with duplicate parameter check
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > should handle parameter submission with duplicate parameter check
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > Show/Hide All Parameters Toggle > should show all parameters when toggle button is clicked again
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > Cancel Delete Parameter Modal > should keep parameter when cancel button is clicked in delete modal
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > Multiple Parameters Interaction > should handle multiple parameters independently
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > Multiple Parameters Interaction > should delete one parameter while keeping others
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > Multiple Parameters Interaction > should hide/show all parameters simultaneously
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/Parameters.test.tsx > ParametersSection > Parameter Actions Visibility > should show rename and delete buttons for each parameter
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/testing.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/testing/FieldTestProvider.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/testing/FormWrapper.js" points to missing source files
Sourcemap for "/workspace/node_modules/@kaoto/forms/dist/testing/KaotoFormPageObject.js" points to missing source files
stderr | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should serialize empty strings `''` as `undefined`
[KaotoForm Validator]: Could not compile schema MissingRefError: can't resolve reference #/items/definitions/org.apache.camel.model.ProcessorDefinition from id #
    at Object.code (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/vocabularies/core/ref.js:21:19)
    at keywordCode (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:464:13)
    at /workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:185:25
    at CodeGen.code (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/codegen/index.js:439:13)
    at CodeGen.block (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/codegen/index.js:568:18)
    at schemaKeywords (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:185:13)
    at typeAndKeywords (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:128:5)
    at subSchemaObjCode (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:115:5)
    at subschemaCode (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:91:13)
    at KeywordCxt.subschema (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:438:9) {
  missingRef: '#/items/definitions/org.apache.camel.model.ProcessorDefinition',
  missingSchema: ''
}

stderr | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should serialize empty strings(with space characters) `' '` as `undefined`
[KaotoForm Validator]: Could not compile schema MissingRefError: can't resolve reference #/items/definitions/org.apache.camel.model.ProcessorDefinition from id #
    at Object.code (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/vocabularies/core/ref.js:21:19)
    at keywordCode (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:464:13)
    at /workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:185:25
    at CodeGen.code (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/codegen/index.js:439:13)
    at CodeGen.block (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/codegen/index.js:568:18)
    at schemaKeywords (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:185:13)
    at typeAndKeywords (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:128:5)
    at subSchemaObjCode (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:115:5)
    at subschemaCode (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:91:13)
    at KeywordCxt.subschema (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:438:9) {
  missingRef: '#/items/definitions/org.apache.camel.model.ProcessorDefinition',
  missingSchema: ''
}

stderr | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should allow consumers to update the Camel Route ID
[KaotoForm Validator]: Could not compile schema MissingRefError: can't resolve reference #/items/definitions/org.apache.camel.model.ProcessorDefinition from id #
    at Object.code (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/vocabularies/core/ref.js:21:19)
    at keywordCode (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:464:13)
    at /workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:185:25
    at CodeGen.code (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/codegen/index.js:439:13)
    at CodeGen.block (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/codegen/index.js:568:18)
    at schemaKeywords (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:185:13)
    at typeAndKeywords (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:128:5)
    at subSchemaObjCode (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:115:5)
    at subschemaCode (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:91:13)
    at KeywordCxt.subschema (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/compile/validate/index.js:438:9) {
  missingRef: '#/items/definitions/org.apache.camel.model.ProcessorDefinition',
  missingSchema: ''
}

stderr | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should show the User-updated field under the modified tab > normal text field
[KaotoForm Validator]: Could not compile schema Error: schema is invalid: data/properties/parameters/properties/exchangePattern/type must be equal to one of the allowed values, data/properties/parameters/properties/exchangePattern/type must be array, data/properties/parameters/properties/exchangePattern/type must match a schema in anyOf, data/properties/parameters/properties/runLoggingLevel/type must be equal to one of the allowed values, data/properties/parameters/properties/runLoggingLevel/type must be array, data/properties/parameters/properties/runLoggingLevel/type must match a schema in anyOf
    at Ajv.validateSchema (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/core.js:267:23)
    at Ajv._addSchema (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/core.js:461:18)
    at Ajv.compile (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/core.js:159:26)
    at getValidator (/workspace/node_modules/@kaoto/forms/src/form/validation/get-validator.ts:9:21)
    at /workspace/node_modules/@kaoto/forms/src/form/KaotoForm.tsx:104:49
    at mountMemo (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:8777:23)
    at Object.useMemo (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:26216:18)
    at process.env.NODE_ENV.exports.useMemo (/workspace/node_modules/react/cjs/react.development.js:1251:34)
    at /workspace/node_modules/@kaoto/forms/src/form/KaotoForm.tsx:104:30
    at Object.react_stack_bottom_frame (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:25904:20)

stderr | src/components/Visualization/Canvas/Form/CanvasForm.test.tsx > CanvasForm > should show the Required field under the required tab > normal text field
[KaotoForm Validator]: Could not compile schema Error: schema is invalid: data/properties/parameters/properties/exchangePattern/type must be equal to one of the allowed values, data/properties/parameters/properties/exchangePattern/type must be array, data/properties/parameters/properties/exchangePattern/type must match a schema in anyOf, data/properties/parameters/properties/runLoggingLevel/type must be equal to one of the allowed values, data/properties/parameters/properties/runLoggingLevel/type must be array, data/properties/parameters/properties/runLoggingLevel/type must match a schema in anyOf
    at Ajv.validateSchema (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/core.js:267:23)
    at Ajv._addSchema (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/core.js:461:18)
    at Ajv.compile (/workspace/node_modules/@kaoto/forms/node_modules/ajv/dist/core.js:159:26)
    at getValidator (/workspace/node_modules/@kaoto/forms/src/form/validation/get-validator.ts:9:21)
    at /workspace/node_modules/@kaoto/forms/src/form/KaotoForm.tsx:104:49
    at mountMemo (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:8777:23)
    at Object.useMemo (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:26216:18)
    at process.env.NODE_ENV.exports.useMemo (/workspace/node_modules/react/cjs/react.development.js:1251:34)
    at /workspace/node_modules/@kaoto/forms/src/form/KaotoForm.tsx:104:30
    at Object.react_stack_bottom_frame (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:25904:20)

stderr | src/components/ResizableSplitPanels/ResizableSplitPanels.test.tsx > ResizableSplitPanels - Keyboard Navigation > should prevent default behavior for arrow keys
An update to ResizableSplitPanels inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to ResizableSplitPanels inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to ResizableSplitPanels inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/DataMapper/XsltDocumentRenameInput.test.tsx > XsltDocumentRenameInput > Save functionality > should stop event propagation when clicking the save button
An update to XsltDocumentRenameInput inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to XsltDocumentRenameInput inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to XsltDocumentRenameInput inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/PropertiesModal/PropertiesModal.test.tsx > PropertiesModal > Component tile > renders component properties table correctly
Each child in a list should have a unique "key" prop.

Check the render method of `PropertiesTabs`. See https://react.dev/link/warning-keys for more information.

stderr | src/components/Document/actions/MappingMenu/MappingContextMenuAction.test.tsx > MappingContextMenuAction > Comment Functionality > Comment Dropdown Item Rendering > should render comment dropdown item when nodeData has a mapping item
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/MappingMenu/MappingContextMenuAction.test.tsx > MappingContextMenuAction > Comment Functionality > Comment Dropdown Item Rendering > should display "Edit Comment" when there is an existing comment
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/MappingMenu/MappingContextMenuAction.test.tsx > MappingContextMenuAction > Comment Functionality > CommentModal Rendering > should pass correct mapping to CommentModal
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/MappingMenu/MappingContextMenuAction.test.tsx > MappingContextMenuAction > Sort Functionality > should display "Edit Sort" when ForEachItem has existing sort items
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > RuntimeCatalogNameField > Rendering > should filter to only show integration runtimes
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > RuntimeCatalogNameField > Menu Interactions > should select catalog when clicking menu item
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > RuntimeCatalogNameField > Runtime Grouping > should group catalogs by runtime
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > RuntimeCatalogNameField > Runtime Grouping > should display catalogs under their runtime group
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > RuntimeCatalogNameField > Edge Cases > should handle empty catalog library
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > RuntimeCatalogNameField > Edge Cases > should handle catalog library with no matching runtimes
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > TestingCatalogNameField > Rendering > should filter to only show testing runtimes
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > TestingCatalogNameField > Menu Interactions > should select catalog when clicking menu item
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > TestingCatalogNameField > Runtime Grouping > should group catalogs by runtime
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > TestingCatalogNameField > Runtime Grouping > should display catalogs under their runtime group
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > TestingCatalogNameField > Edge Cases > should handle empty catalog library
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > TestingCatalogNameField > Edge Cases > should handle catalog library with no matching runtimes
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Canvas/Form/fields/CatalogSelectorField/CatalogSelectorField.test.tsx > CatalogSelectorField > Multiple Catalogs per Runtime > should display multiple catalogs for the same runtime
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

Error: Not implemented: [REDACTED:jwt]
    at module.exports (/workspace/node_modules/jsdom/lib/jsdom/browser/not-implemented.js:9:17)
    at HTMLFormElementImpl.requestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:113:5)
    at HTMLFormElementImpl._doRequestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:79:10)
    at HTMLButtonElementImpl._activationBehavior (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js:23:14)
    at HTMLButtonElementImpl._dispatch (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:252:26)
    at HTMLButtonElementImpl.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:104:17)
    at HTMLButtonElement.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:241:34)
    at /workspace/node_modules/@testing-library/dom/dist/events.js:19:20
    at /workspace/node_modules/@testing-library/react/dist/pure.js:107:16
    at /workspace/node_modules/@testing-library/react/dist/act-compat.js:47:24 undefined
Error: Not implemented: [REDACTED:jwt]
    at module.exports (/workspace/node_modules/jsdom/lib/jsdom/browser/not-implemented.js:9:17)
    at HTMLFormElementImpl.requestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:113:5)
    at HTMLFormElementImpl._doRequestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:79:10)
    at HTMLButtonElementImpl._activationBehavior (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js:23:14)
    at HTMLButtonElementImpl._dispatch (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:252:26)
    at HTMLButtonElementImpl.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:104:17)
    at HTMLButtonElement.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:241:34)
    at /workspace/node_modules/@testing-library/dom/dist/events.js:19:20
    at /workspace/node_modules/@testing-library/react/dist/pure.js:107:16
    at /workspace/node_modules/@testing-library/react/dist/act-compat.js:47:24 undefined
Error: Not implemented: [REDACTED:jwt]
    at module.exports (/workspace/node_modules/jsdom/lib/jsdom/browser/not-implemented.js:9:17)
    at HTMLFormElementImpl.requestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:113:5)
    at HTMLFormElementImpl._doRequestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:79:10)
    at HTMLButtonElementImpl._activationBehavior (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js:23:14)
    at HTMLButtonElementImpl._dispatch (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:252:26)
    at HTMLButtonElementImpl.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:104:17)
    at HTMLButtonElement.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:241:34)
    at /workspace/node_modules/@testing-library/dom/dist/events.js:19:20
    at /workspace/node_modules/@testing-library/react/dist/pure.js:107:16
    at /workspace/node_modules/@testing-library/react/dist/act-compat.js:47:24 undefined
Error: Not implemented: [REDACTED:jwt]
    at module.exports (/workspace/node_modules/jsdom/lib/jsdom/browser/not-implemented.js:9:17)
    at HTMLFormElementImpl.requestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:113:5)
    at HTMLFormElementImpl._doRequestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:79:10)
    at HTMLButtonElementImpl._activationBehavior (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js:23:14)
    at HTMLButtonElementImpl._dispatch (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:252:26)
    at HTMLButtonElementImpl.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:104:17)
    at HTMLButtonElement.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:241:34)
    at /workspace/node_modules/@testing-library/dom/dist/events.js:19:20
    at /workspace/node_modules/@testing-library/react/dist/pure.js:107:16
    at /workspace/node_modules/@testing-library/react/dist/act-compat.js:47:24 undefined
stderr | src/components/Document/actions/MappingMenu/ForEachGroup/ForEachGroupModal.test.tsx > ForEachGroupModal > should change grouping strategy via dropdown
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

Error: Not implemented: [REDACTED:jwt]
    at module.exports (/workspace/node_modules/jsdom/lib/jsdom/browser/not-implemented.js:9:17)
    at HTMLFormElementImpl.requestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:113:5)
    at HTMLFormElementImpl._doRequestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:79:10)
    at HTMLButtonElementImpl._activationBehavior (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js:23:14)
    at HTMLButtonElementImpl._dispatch (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:252:26)
    at HTMLButtonElementImpl.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:104:17)
    at HTMLButtonElement.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:241:34)
    at /workspace/node_modules/@testing-library/dom/dist/events.js:19:20
    at /workspace/node_modules/@testing-library/react/dist/pure.js:107:16
    at /workspace/node_modules/@testing-library/react/dist/act-compat.js:47:24 undefined
Error: Not implemented: [REDACTED:jwt]
    at module.exports (/workspace/node_modules/jsdom/lib/jsdom/browser/not-implemented.js:9:17)
    at HTMLFormElementImpl.requestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:113:5)
    at HTMLFormElementImpl._doRequestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:79:10)
    at HTMLButtonElementImpl._activationBehavior (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js:23:14)
    at HTMLButtonElementImpl._dispatch (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:252:26)
    at HTMLButtonElementImpl.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:104:17)
    at HTMLButtonElement.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:241:34)
    at /workspace/node_modules/@testing-library/dom/dist/events.js:19:20
    at /workspace/node_modules/@testing-library/react/dist/pure.js:107:16
    at /workspace/node_modules/@testing-library/react/dist/act-compat.js:47:24 undefined
Error: Not implemented: [REDACTED:jwt]
    at module.exports (/workspace/node_modules/jsdom/lib/jsdom/browser/not-implemented.js:9:17)
    at HTMLFormElementImpl.requestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:113:5)
    at HTMLFormElementImpl._doRequestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:79:10)
    at HTMLButtonElementImpl._activationBehavior (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js:23:14)
    at HTMLButtonElementImpl._dispatch (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:252:26)
    at HTMLButtonElementImpl.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:104:17)
    at HTMLButtonElement.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:241:34)
    at /workspace/node_modules/@testing-library/dom/dist/events.js:19:20
    at /workspace/node_modules/@testing-library/react/dist/pure.js:107:16
    at /workspace/node_modules/@testing-library/react/dist/act-compat.js:47:24 undefined
Error: Not implemented: [REDACTED:jwt]
    at module.exports (/workspace/node_modules/jsdom/lib/jsdom/browser/not-implemented.js:9:17)
    at HTMLFormElementImpl.requestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:113:5)
    at HTMLFormElementImpl._doRequestSubmit (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js:79:10)
    at HTMLButtonElementImpl._activationBehavior (/workspace/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js:23:14)
    at HTMLButtonElementImpl._dispatch (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:252:26)
    at HTMLButtonElementImpl.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js:104:17)
    at HTMLButtonElement.dispatchEvent (/workspace/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js:241:34)
    at /workspace/node_modules/@testing-library/dom/dist/events.js:19:20
    at /workspace/node_modules/@testing-library/react/dist/pure.js:107:16
    at /workspace/node_modules/@testing-library/react/dist/act-compat.js:47:24 undefined
stderr | src/components/View/SourceTargetView.test.tsx > SourceTargetView > Source Body Document > should attach and detach schema
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourceTargetView.test.tsx > SourceTargetView > Source Body Document > should not show JSON schema option for Source Body
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourceTargetView.test.tsx > SourceTargetView > Target Body Document > should attach and detach schema
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourceTargetView.test.tsx > SourceTargetView > Target Body Document > should attach JSON schema
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourceTargetView.test.tsx > SourceTargetView > Target Body Document > should attach Camel YAML JSON schema
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourceTargetView.test.tsx > SourceTargetView > Zoom Controls > should render zoom in and zoom out buttons
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourceTargetView.test.tsx > SourceTargetView > Zoom Controls > should render zoom in and zoom out buttons
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksContainer inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourceTargetView.test.tsx > SourceTargetView > Zoom Controls > should render zoom in and zoom out buttons
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourceTargetView.test.tsx > SourceTargetView > Zoom Controls > should increase scale factor when zoom in is clicked
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourceTargetView.test.tsx > SourceTargetView > Zoom Controls > should decrease scale factor when zoom out is clicked
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourceTargetView.test.tsx > SourceTargetView > Zoom Controls > should not zoom in beyond max scale (1.2x)
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourceTargetView.test.tsx > SourceTargetView > Zoom Controls > should not zoom out beyond min scale (0.7x)
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/services/documentation.service.test.tsx > DocumentationService > getDocumentationEntities() > should generate route and beans documentation entities
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/services/documentation.service.test.tsx > DocumentationService > getDocumentationEntities() > should generate kamelet documentation entities
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/services/documentation.service.test.tsx > DocumentationService > getDocumentationEntities() > should generate pipe documentation entities
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/services/documentation.service.test.tsx > DocumentationService > getDocumentationEntities() > should generate route configuration documentation entities
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/services/documentation.service.test.tsx > DocumentationService > generateMarkdown() > should generate route and beans markdown
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/services/documentation.service.test.tsx > DocumentationService > generateMarkdown() > should generate kamelet markdown
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/services/documentation.service.test.tsx > DocumentationService > generateMarkdown() > should generate markdown for kamelet with multiline property and XML
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/services/documentation.service.test.tsx > DocumentationService > generateMarkdown() > should generate aws-cloudtail-source kamelet markdown
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/services/documentation.service.test.tsx > DocumentationService > generateMarkdown() > should generate pipe markdown
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/services/documentation.service.test.tsx > DocumentationService > generateMarkdown() > should generate rest operations markdown
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/services/documentation.service.test.tsx > DocumentationService > generateMarkdown() > should generate route configuration markdown
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/services/documentation.service.test.tsx > DocumentationService > generateDocumentationZip() > should generate a zip file
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should initialize the camelResource as `class CamelRouteResource {
	static SUPPORTED_ENTITIES = [
		{
			type: __vite_ssr_import_4__.EntityType.Route,
			group: "",
			Entity: __vite_ssr_import_5__.CamelRouteVisualEntity,
			isVisualEntity: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_14__.CamelRouteConfigurationVisualEntity,
			isVisualEntity: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_9__.CamelInterceptVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_7__.CamelInterceptFromVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_8__.CamelInterceptSendToEndpointVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_10__.CamelOnCompletionVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Error Handling",
			Entity: __vite_ssr_import_11__.CamelOnExceptionVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Error Handling",
			Entity: __vite_ssr_import_6__.CamelErrorHandlerVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Rest",
			Entity: __vite_ssr_import_12__.CamelRestConfigurationVisualEntity,
			isVisualEntity: false
		},
		{
			type: __vite_ssr_import_4__.EntityType.Rest,
			group: "Rest",
			Entity: __vite_ssr_import_13__.CamelRestVisualEntity,
			isVisualEntity: false
		}
	];
	entities = [];
	resolvedEntities;
	/**
	* Entities this resource supports. Polymorphic so subclasses (e.g. CamelXMLRouteResource)
	* can restrict the set. Statics are not polymorphic, so all internal logic must read this,
	* never `CamelRouteResource.SUPPORTED_ENTITIES` directly.
	*/
	get supportedEntities() {
		return CamelRouteResource.SUPPORTED_ENTITIES;
	}
	constructor(rawEntities, comments = []) {
		this.rawEntities = rawEntities;
		this.comments = comments;
	}
	async initialize() {
		if (!this.rawEntities) {
			this.entities = [];
			return;
		};
		const entities = Array.isArray(this.rawEntities) ? this.rawEntities : [this.rawEntities];
		const parsedEntities = entities.reduce((acc, rawItem) => {
			const entity = this.getEntity(rawItem);
			if ((0,__vite_ssr_import_0__.isDefined)(entity) && typeof entity === "object") {
				acc.push(entity);
			};
			return acc;
		}, []);
		this.entities = [REDACTED:jwt](parsedEntities);
	}
	setRawEntities(rawEntities) {
		this.rawEntities = rawEntities;
	}
	getCanvasEntityList() {
		this.resolvedEntities = this.supportedEntities.filter(({ isVisualEntity }) => isVisualEntity).reduce((acc, { type, group }) => {
			const catalogEntity = [REDACTED:jwt](__vite_ssr_import_3__.CatalogKind.Entity, type);
			const entityDefinition = {
				name: type,
				title: catalogEntity?.model.title || type,
				description: catalogEntity?.model.description || ""
			};
			if (group === "") {
				acc.common.push(entityDefinition);
				return acc;
			};
			acc.groups[group] ??= [];
			acc.groups[group].push(entityDefinition);
			return acc;
		}, {
			common: [],
			groups: {}
		});
		return this.resolvedEntities;
	}
	addNewEntity(entityType, entityTemplate, insertAfterEntityId) {
		if (entityType && entityType !== __vite_ssr_import_4__.EntityType.Route) {
			const supportedEntity = this.supportedEntities.find(({ type }) => type === entityType);
			if (supportedEntity) {
				const entity = new supportedEntity.Entity(entityTemplate);
				const insertIndex = this.getInsertionIndex(entityType, insertAfterEntityId);
				this.entities.splice(insertIndex, 0, entity);
				return entity.id;
			}
		};
		let route;
		if (entityTemplate) {
			route = entityTemplate;
		} else {
			const template = [REDACTED:jwt](this.getType());
			route = template[0];
		};
		const entity = new __vite_ssr_import_5__.CamelRouteVisualEntity(route);
		const insertIndex = this.getInsertionIndex(__vite_ssr_import_4__.EntityType.Route, insertAfterEntityId);
		this.entities.splice(insertIndex, 0, entity);
		return entity.id;
	}
	/**
	* Gets the insertion index for a new entity.
	* If `insertAfterEntityId` is provided, the new entity is placed right after the entity with that ID.
	* Otherwise, falls back to XML schema ordering via EntityOrderingService.
	*/
	getInsertionIndex(entityType, insertAfterEntityId) {
		if (insertAfterEntityId) {
			const afterIndex = this.entities.findIndex((e) => e.id === insertAfterEntityId);
			if (afterIndex !== -1) {
				return afterIndex + 1;
			}
		};
		return [REDACTED:jwt](this.entities, entityType);
	}
	getType() {
		return __vite_ssr_import_20__.SourceSchemaType.Route;
	}
	supportsMultipleVisualEntities() {
		return true;
	}
	getVisualEntities() {
		return this.entities.filter((entity) => this.supportedEntities.some(({ Entity, isVisualEntity }) => entity instanceof Entity && isVisualEntity));
	}
	getEntities() {
		return this.entities.filter((entity) => !(entity instanceof __vite_ssr_import_5__.CamelRouteVisualEntity));
	}
	toJSON() {
		// Entities are already in correct order from addNewEntity() and constructor
		return this.entities.map((entity) => entity.toJSON());
	}
	async toSourceCode() {
		const code = (0,__vite_ssr_import_1__.stringify)(this.toJSON(), { schema: "yaml-1.1" }) || "";
		return (0,__vite_ssr_import_2__.insertYamlComments)(code, this.comments);
	}
	createBeansEntity() {
		const newBeans = { beans: [] };
		const beansEntity = new __vite_ssr_import_18__.BeansEntity(newBeans);
		this.entities.push(beansEntity);
		return beansEntity;
	}
	deleteBeansEntity(entity) {
		const index = this.entities.findIndex((e) => e === entity);
		if (index !== -1) {
			this.entities.splice(index, 1);
		}
	}
	removeEntity(ids) {
		if (!(0,__vite_ssr_import_0__.isDefined)(ids)) return;
		this.entities = this.entities.filter((e) => !ids?.includes(e.id));
	}
	/** Components Catalog related methods */
	getCompatibleComponents(mode, visualEntityData, definition) {
		return [REDACTED:jwt](mode, visualEntityData, definition);
	}
	getCompatibleRuntimes() {
		return [
			"Main",
			"Quarkus",
			"Spring Boot"
		];
	}
	getEntity(rawItem) {
		if (!(0,__vite_ssr_import_0__.isDefined)(rawItem) || Array.isArray(rawItem)) {
			return undefined;
		};
		if ((0,__vite_ssr_import_18__.isBeans)(rawItem)) {
			return new __vite_ssr_import_18__.BeansEntity(rawItem);
		};
		for (const { Entity } of this.supportedEntities) {
			if (Entity.isApplicable(rawItem)) {
				return new Entity(rawItem);
			}
		};
		return new __vite_ssr_import_15__.NonVisualEntity(rawItem);
	}
}` provided a `undefined` file extension
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should initialize the camelResource as `class CamelRouteResource {
	static SUPPORTED_ENTITIES = [
		{
			type: __vite_ssr_import_4__.EntityType.Route,
			group: "",
			Entity: __vite_ssr_import_5__.CamelRouteVisualEntity,
			isVisualEntity: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_14__.CamelRouteConfigurationVisualEntity,
			isVisualEntity: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_9__.CamelInterceptVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_7__.CamelInterceptFromVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_8__.CamelInterceptSendToEndpointVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_10__.CamelOnCompletionVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Error Handling",
			Entity: __vite_ssr_import_11__.CamelOnExceptionVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Error Handling",
			Entity: __vite_ssr_import_6__.CamelErrorHandlerVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Rest",
			Entity: __vite_ssr_import_12__.CamelRestConfigurationVisualEntity,
			isVisualEntity: false
		},
		{
			type: __vite_ssr_import_4__.EntityType.Rest,
			group: "Rest",
			Entity: __vite_ssr_import_13__.CamelRestVisualEntity,
			isVisualEntity: false
		}
	];
	entities = [];
	resolvedEntities;
	/**
	* Entities this resource supports. Polymorphic so subclasses (e.g. CamelXMLRouteResource)
	* can restrict the set. Statics are not polymorphic, so all internal logic must read this,
	* never `CamelRouteResource.SUPPORTED_ENTITIES` directly.
	*/
	get supportedEntities() {
		return CamelRouteResource.SUPPORTED_ENTITIES;
	}
	constructor(rawEntities, comments = []) {
		this.rawEntities = rawEntities;
		this.comments = comments;
	}
	async initialize() {
		if (!this.rawEntities) {
			this.entities = [];
			return;
		};
		const entities = Array.isArray(this.rawEntities) ? this.rawEntities : [this.rawEntities];
		const parsedEntities = entities.reduce((acc, rawItem) => {
			const entity = this.getEntity(rawItem);
			if ((0,__vite_ssr_import_0__.isDefined)(entity) && typeof entity === "object") {
				acc.push(entity);
			};
			return acc;
		}, []);
		this.entities = [REDACTED:jwt](parsedEntities);
	}
	setRawEntities(rawEntities) {
		this.rawEntities = rawEntities;
	}
	getCanvasEntityList() {
		this.resolvedEntities = this.supportedEntities.filter(({ isVisualEntity }) => isVisualEntity).reduce((acc, { type, group }) => {
			const catalogEntity = [REDACTED:jwt](__vite_ssr_import_3__.CatalogKind.Entity, type);
			const entityDefinition = {
				name: type,
				title: catalogEntity?.model.title || type,
				description: catalogEntity?.model.description || ""
			};
			if (group === "") {
				acc.common.push(entityDefinition);
				return acc;
			};
			acc.groups[group] ??= [];
			acc.groups[group].push(entityDefinition);
			return acc;
		}, {
			common: [],
			groups: {}
		});
		return this.resolvedEntities;
	}
	addNewEntity(entityType, entityTemplate, insertAfterEntityId) {
		if (entityType && entityType !== __vite_ssr_import_4__.EntityType.Route) {
			const supportedEntity = this.supportedEntities.find(({ type }) => type === entityType);
			if (supportedEntity) {
				const entity = new supportedEntity.Entity(entityTemplate);
				const insertIndex = this.getInsertionIndex(entityType, insertAfterEntityId);
				this.entities.splice(insertIndex, 0, entity);
				return entity.id;
			}
		};
		let route;
		if (entityTemplate) {
			route = entityTemplate;
		} else {
			const template = [REDACTED:jwt](this.getType());
			route = template[0];
		};
		const entity = new __vite_ssr_import_5__.CamelRouteVisualEntity(route);
		const insertIndex = this.getInsertionIndex(__vite_ssr_import_4__.EntityType.Route, insertAfterEntityId);
		this.entities.splice(insertIndex, 0, entity);
		return entity.id;
	}
	/**
	* Gets the insertion index for a new entity.
	* If `insertAfterEntityId` is provided, the new entity is placed right after the entity with that ID.
	* Otherwise, falls back to XML schema ordering via EntityOrderingService.
	*/
	getInsertionIndex(entityType, insertAfterEntityId) {
		if (insertAfterEntityId) {
			const afterIndex = this.entities.findIndex((e) => e.id === insertAfterEntityId);
			if (afterIndex !== -1) {
				return afterIndex + 1;
			}
		};
		return [REDACTED:jwt](this.entities, entityType);
	}
	getType() {
		return __vite_ssr_import_20__.SourceSchemaType.Route;
	}
	supportsMultipleVisualEntities() {
		return true;
	}
	getVisualEntities() {
		return this.entities.filter((entity) => this.supportedEntities.some(({ Entity, isVisualEntity }) => entity instanceof Entity && isVisualEntity));
	}
	getEntities() {
		return this.entities.filter((entity) => !(entity instanceof __vite_ssr_import_5__.CamelRouteVisualEntity));
	}
	toJSON() {
		// Entities are already in correct order from addNewEntity() and constructor
		return this.entities.map((entity) => entity.toJSON());
	}
	async toSourceCode() {
		const code = (0,__vite_ssr_import_1__.stringify)(this.toJSON(), { schema: "yaml-1.1" }) || "";
		return (0,__vite_ssr_import_2__.insertYamlComments)(code, this.comments);
	}
	createBeansEntity() {
		const newBeans = { beans: [] };
		const beansEntity = new __vite_ssr_import_18__.BeansEntity(newBeans);
		this.entities.push(beansEntity);
		return beansEntity;
	}
	deleteBeansEntity(entity) {
		const index = this.entities.findIndex((e) => e === entity);
		if (index !== -1) {
			this.entities.splice(index, 1);
		}
	}
	removeEntity(ids) {
		if (!(0,__vite_ssr_import_0__.isDefined)(ids)) return;
		this.entities = this.entities.filter((e) => !ids?.includes(e.id));
	}
	/** Components Catalog related methods */
	getCompatibleComponents(mode, visualEntityData, definition) {
		return [REDACTED:jwt](mode, visualEntityData, definition);
	}
	getCompatibleRuntimes() {
		return [
			"Main",
			"Quarkus",
			"Spring Boot"
		];
	}
	getEntity(rawItem) {
		if (!(0,__vite_ssr_import_0__.isDefined)(rawItem) || Array.isArray(rawItem)) {
			return undefined;
		};
		if ((0,__vite_ssr_import_18__.isBeans)(rawItem)) {
			return new __vite_ssr_import_18__.BeansEntity(rawItem);
		};
		for (const { Entity } of this.supportedEntities) {
			if (Entity.isApplicable(rawItem)) {
				return new Entity(rawItem);
			}
		};
		return new __vite_ssr_import_15__.NonVisualEntity(rawItem);
	}
}` provided a `undefined` file extension
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should initialize the camelResource as `class CamelXMLRouteResource extends CamelRouteResource {
	/** XML supports the visual route entities only; the YAML-only entities are excluded. */
	static SUPPORTED_ENTITIES = [REDACTED:jwt].filter(({ isYamlOnly }) => !isYamlOnly);
	code;
	xmlDeclaration;
	rootElementDefinitions;
	xmlSerializer = new XMLSerializer();
	constructor(source = "") {
		super();
		const parser = new __vite_ssr_import_1__.KaotoXmlParser();
		this.xmlDeclaration = CamelXMLRouteResource.parseXmlDeclaration(source);
		this.code = source.replace(this.xmlDeclaration, "");
		this.comments = (0,__vite_ssr_import_3__.parseXmlComments)(this.code);
		this.rootElementDefinitions = parser.parseRootElementDefinitions(this.code);
	}
	get supportedEntities() {
		return CamelXMLRouteResource.SUPPORTED_ENTITIES;
	}
	async initialize() {
		const parser = new __vite_ssr_import_1__.KaotoXmlParser();
		const rawEntities = await parser.parseXML(this.code);
		this.setRawEntities(rawEntities);
		await super.initialize();
	}
	async toSourceCode() {
		const entities = this.getEntities().filter((entity) => entity.type === __vite_ssr_import_4__.EntityType.Beans);
		entities.push(...this.getVisualEntities());
		const xmlDocument = await [REDACTED:jwt](entities, this.rootElementDefinitions);
		const xmlString = this.xmlSerializer.serializeToString(xmlDocument);
		const formatted = (0,__vite_ssr_import_0__.default)(xmlString);
		return this.getXmlDeclaration() + (0,__vite_ssr_import_3__.insertXmlComments)(formatted, this.comments);
	}
	getXmlDeclaration() {
		return this.xmlDeclaration ? this.xmlDeclaration + "\n" : "";
	}
	static parseXmlDeclaration(xml) {
		const match = XML_DECLARATION_REGEX.exec(xml);
		return match ? match[0] : "";
	}
}` provided a `camel.xml` file extension
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should initialize the camelResource as `class CamelXMLRouteResource extends CamelRouteResource {
	/** XML supports the visual route entities only; the YAML-only entities are excluded. */
	static SUPPORTED_ENTITIES = [REDACTED:jwt].filter(({ isYamlOnly }) => !isYamlOnly);
	code;
	xmlDeclaration;
	rootElementDefinitions;
	xmlSerializer = new XMLSerializer();
	constructor(source = "") {
		super();
		const parser = new __vite_ssr_import_1__.KaotoXmlParser();
		this.xmlDeclaration = CamelXMLRouteResource.parseXmlDeclaration(source);
		this.code = source.replace(this.xmlDeclaration, "");
		this.comments = (0,__vite_ssr_import_3__.parseXmlComments)(this.code);
		this.rootElementDefinitions = parser.parseRootElementDefinitions(this.code);
	}
	get supportedEntities() {
		return CamelXMLRouteResource.SUPPORTED_ENTITIES;
	}
	async initialize() {
		const parser = new __vite_ssr_import_1__.KaotoXmlParser();
		const rawEntities = await parser.parseXML(this.code);
		this.setRawEntities(rawEntities);
		await super.initialize();
	}
	async toSourceCode() {
		const entities = this.getEntities().filter((entity) => entity.type === __vite_ssr_import_4__.EntityType.Beans);
		entities.push(...this.getVisualEntities());
		const xmlDocument = await [REDACTED:jwt](entities, this.rootElementDefinitions);
		const xmlString = this.xmlSerializer.serializeToString(xmlDocument);
		const formatted = (0,__vite_ssr_import_0__.default)(xmlString);
		return this.getXmlDeclaration() + (0,__vite_ssr_import_3__.insertXmlComments)(formatted, this.comments);
	}
	getXmlDeclaration() {
		return this.xmlDeclaration ? this.xmlDeclaration + "\n" : "";
	}
	static parseXmlDeclaration(xml) {
		const match = XML_DECLARATION_REGEX.exec(xml);
		return match ? match[0] : "";
	}
}` provided a `camel.xml` file extension
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should initialize the camelResource as `class CamelRouteResource {
	static SUPPORTED_ENTITIES = [
		{
			type: __vite_ssr_import_4__.EntityType.Route,
			group: "",
			Entity: __vite_ssr_import_5__.CamelRouteVisualEntity,
			isVisualEntity: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_14__.CamelRouteConfigurationVisualEntity,
			isVisualEntity: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_9__.CamelInterceptVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_7__.CamelInterceptFromVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_8__.CamelInterceptSendToEndpointVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_10__.CamelOnCompletionVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Error Handling",
			Entity: __vite_ssr_import_11__.CamelOnExceptionVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Error Handling",
			Entity: __vite_ssr_import_6__.CamelErrorHandlerVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Rest",
			Entity: __vite_ssr_import_12__.CamelRestConfigurationVisualEntity,
			isVisualEntity: false
		},
		{
			type: __vite_ssr_import_4__.EntityType.Rest,
			group: "Rest",
			Entity: __vite_ssr_import_13__.CamelRestVisualEntity,
			isVisualEntity: false
		}
	];
	entities = [];
	resolvedEntities;
	/**
	* Entities this resource supports. Polymorphic so subclasses (e.g. CamelXMLRouteResource)
	* can restrict the set. Statics are not polymorphic, so all internal logic must read this,
	* never `CamelRouteResource.SUPPORTED_ENTITIES` directly.
	*/
	get supportedEntities() {
		return CamelRouteResource.SUPPORTED_ENTITIES;
	}
	constructor(rawEntities, comments = []) {
		this.rawEntities = rawEntities;
		this.comments = comments;
	}
	async initialize() {
		if (!this.rawEntities) {
			this.entities = [];
			return;
		};
		const entities = Array.isArray(this.rawEntities) ? this.rawEntities : [this.rawEntities];
		const parsedEntities = entities.reduce((acc, rawItem) => {
			const entity = this.getEntity(rawItem);
			if ((0,__vite_ssr_import_0__.isDefined)(entity) && typeof entity === "object") {
				acc.push(entity);
			};
			return acc;
		}, []);
		this.entities = [REDACTED:jwt](parsedEntities);
	}
	setRawEntities(rawEntities) {
		this.rawEntities = rawEntities;
	}
	getCanvasEntityList() {
		this.resolvedEntities = this.supportedEntities.filter(({ isVisualEntity }) => isVisualEntity).reduce((acc, { type, group }) => {
			const catalogEntity = [REDACTED:jwt](__vite_ssr_import_3__.CatalogKind.Entity, type);
			const entityDefinition = {
				name: type,
				title: catalogEntity?.model.title || type,
				description: catalogEntity?.model.description || ""
			};
			if (group === "") {
				acc.common.push(entityDefinition);
				return acc;
			};
			acc.groups[group] ??= [];
			acc.groups[group].push(entityDefinition);
			return acc;
		}, {
			common: [],
			groups: {}
		});
		return this.resolvedEntities;
	}
	addNewEntity(entityType, entityTemplate, insertAfterEntityId) {
		if (entityType && entityType !== __vite_ssr_import_4__.EntityType.Route) {
			const supportedEntity = this.supportedEntities.find(({ type }) => type === entityType);
			if (supportedEntity) {
				const entity = new supportedEntity.Entity(entityTemplate);
				const insertIndex = this.getInsertionIndex(entityType, insertAfterEntityId);
				this.entities.splice(insertIndex, 0, entity);
				return entity.id;
			}
		};
		let route;
		if (entityTemplate) {
			route = entityTemplate;
		} else {
			const template = [REDACTED:jwt](this.getType());
			route = template[0];
		};
		const entity = new __vite_ssr_import_5__.CamelRouteVisualEntity(route);
		const insertIndex = this.getInsertionIndex(__vite_ssr_import_4__.EntityType.Route, insertAfterEntityId);
		this.entities.splice(insertIndex, 0, entity);
		return entity.id;
	}
	/**
	* Gets the insertion index for a new entity.
	* If `insertAfterEntityId` is provided, the new entity is placed right after the entity with that ID.
	* Otherwise, falls back to XML schema ordering via EntityOrderingService.
	*/
	getInsertionIndex(entityType, insertAfterEntityId) {
		if (insertAfterEntityId) {
			const afterIndex = this.entities.findIndex((e) => e.id === insertAfterEntityId);
			if (afterIndex !== -1) {
				return afterIndex + 1;
			}
		};
		return [REDACTED:jwt](this.entities, entityType);
	}
	getType() {
		return __vite_ssr_import_20__.SourceSchemaType.Route;
	}
	supportsMultipleVisualEntities() {
		return true;
	}
	getVisualEntities() {
		return this.entities.filter((entity) => this.supportedEntities.some(({ Entity, isVisualEntity }) => entity instanceof Entity && isVisualEntity));
	}
	getEntities() {
		return this.entities.filter((entity) => !(entity instanceof __vite_ssr_import_5__.CamelRouteVisualEntity));
	}
	toJSON() {
		// Entities are already in correct order from addNewEntity() and constructor
		return this.entities.map((entity) => entity.toJSON());
	}
	async toSourceCode() {
		const code = (0,__vite_ssr_import_1__.stringify)(this.toJSON(), { schema: "yaml-1.1" }) || "";
		return (0,__vite_ssr_import_2__.insertYamlComments)(code, this.comments);
	}
	createBeansEntity() {
		const newBeans = { beans: [] };
		const beansEntity = new __vite_ssr_import_18__.BeansEntity(newBeans);
		this.entities.push(beansEntity);
		return beansEntity;
	}
	deleteBeansEntity(entity) {
		const index = this.entities.findIndex((e) => e === entity);
		if (index !== -1) {
			this.entities.splice(index, 1);
		}
	}
	removeEntity(ids) {
		if (!(0,__vite_ssr_import_0__.isDefined)(ids)) return;
		this.entities = this.entities.filter((e) => !ids?.includes(e.id));
	}
	/** Components Catalog related methods */
	getCompatibleComponents(mode, visualEntityData, definition) {
		return [REDACTED:jwt](mode, visualEntityData, definition);
	}
	getCompatibleRuntimes() {
		return [
			"Main",
			"Quarkus",
			"Spring Boot"
		];
	}
	getEntity(rawItem) {
		if (!(0,__vite_ssr_import_0__.isDefined)(rawItem) || Array.isArray(rawItem)) {
			return undefined;
		};
		if ((0,__vite_ssr_import_18__.isBeans)(rawItem)) {
			return new __vite_ssr_import_18__.BeansEntity(rawItem);
		};
		for (const { Entity } of this.supportedEntities) {
			if (Entity.isApplicable(rawItem)) {
				return new Entity(rawItem);
			}
		};
		return new __vite_ssr_import_15__.NonVisualEntity(rawItem);
	}
}` provided a `camel.yaml` file extension
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should initialize the camelResource as `class CamelRouteResource {
	static SUPPORTED_ENTITIES = [
		{
			type: __vite_ssr_import_4__.EntityType.Route,
			group: "",
			Entity: __vite_ssr_import_5__.CamelRouteVisualEntity,
			isVisualEntity: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_14__.CamelRouteConfigurationVisualEntity,
			isVisualEntity: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_9__.CamelInterceptVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_7__.CamelInterceptFromVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_8__.CamelInterceptSendToEndpointVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Configuration",
			Entity: __vite_ssr_import_10__.CamelOnCompletionVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Error Handling",
			Entity: __vite_ssr_import_11__.CamelOnExceptionVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Error Handling",
			Entity: __vite_ssr_import_6__.CamelErrorHandlerVisualEntity,
			isVisualEntity: true,
			isYamlOnly: true
		},
		{
			type: [REDACTED:jwt],
			group: "Rest",
			Entity: __vite_ssr_import_12__.CamelRestConfigurationVisualEntity,
			isVisualEntity: false
		},
		{
			type: __vite_ssr_import_4__.EntityType.Rest,
			group: "Rest",
			Entity: __vite_ssr_import_13__.CamelRestVisualEntity,
			isVisualEntity: false
		}
	];
	entities = [];
	resolvedEntities;
	/**
	* Entities this resource supports. Polymorphic so subclasses (e.g. CamelXMLRouteResource)
	* can restrict the set. Statics are not polymorphic, so all internal logic must read this,
	* never `CamelRouteResource.SUPPORTED_ENTITIES` directly.
	*/
	get supportedEntities() {
		return CamelRouteResource.SUPPORTED_ENTITIES;
	}
	constructor(rawEntities, comments = []) {
		this.rawEntities = rawEntities;
		this.comments = comments;
	}
	async initialize() {
		if (!this.rawEntities) {
			this.entities = [];
			return;
		};
		const entities = Array.isArray(this.rawEntities) ? this.rawEntities : [this.rawEntities];
		const parsedEntities = entities.reduce((acc, rawItem) => {
			const entity = this.getEntity(rawItem);
			if ((0,__vite_ssr_import_0__.isDefined)(entity) && typeof entity === "object") {
				acc.push(entity);
			};
			return acc;
		}, []);
		this.entities = [REDACTED:jwt](parsedEntities);
	}
	setRawEntities(rawEntities) {
		this.rawEntities = rawEntities;
	}
	getCanvasEntityList() {
		this.resolvedEntities = this.supportedEntities.filter(({ isVisualEntity }) => isVisualEntity).reduce((acc, { type, group }) => {
			const catalogEntity = [REDACTED:jwt](__vite_ssr_import_3__.CatalogKind.Entity, type);
			const entityDefinition = {
				name: type,
				title: catalogEntity?.model.title || type,
				description: catalogEntity?.model.description || ""
			};
			if (group === "") {
				acc.common.push(entityDefinition);
				return acc;
			};
			acc.groups[group] ??= [];
			acc.groups[group].push(entityDefinition);
			return acc;
		}, {
			common: [],
			groups: {}
		});
		return this.resolvedEntities;
	}
	addNewEntity(entityType, entityTemplate, insertAfterEntityId) {
		if (entityType && entityType !== __vite_ssr_import_4__.EntityType.Route) {
			const supportedEntity = this.supportedEntities.find(({ type }) => type === entityType);
			if (supportedEntity) {
				const entity = new supportedEntity.Entity(entityTemplate);
				const insertIndex = this.getInsertionIndex(entityType, insertAfterEntityId);
				this.entities.splice(insertIndex, 0, entity);
				return entity.id;
			}
		};
		let route;
		if (entityTemplate) {
			route = entityTemplate;
		} else {
			const template = [REDACTED:jwt](this.getType());
			route = template[0];
		};
		const entity = new __vite_ssr_import_5__.CamelRouteVisualEntity(route);
		const insertIndex = this.getInsertionIndex(__vite_ssr_import_4__.EntityType.Route, insertAfterEntityId);
		this.entities.splice(insertIndex, 0, entity);
		return entity.id;
	}
	/**
	* Gets the insertion index for a new entity.
	* If `insertAfterEntityId` is provided, the new entity is placed right after the entity with that ID.
	* Otherwise, falls back to XML schema ordering via EntityOrderingService.
	*/
	getInsertionIndex(entityType, insertAfterEntityId) {
		if (insertAfterEntityId) {
			const afterIndex = this.entities.findIndex((e) => e.id === insertAfterEntityId);
			if (afterIndex !== -1) {
				return afterIndex + 1;
			}
		};
		return [REDACTED:jwt](this.entities, entityType);
	}
	getType() {
		return __vite_ssr_import_20__.SourceSchemaType.Route;
	}
	supportsMultipleVisualEntities() {
		return true;
	}
	getVisualEntities() {
		return this.entities.filter((entity) => this.supportedEntities.some(({ Entity, isVisualEntity }) => entity instanceof Entity && isVisualEntity));
	}
	getEntities() {
		return this.entities.filter((entity) => !(entity instanceof __vite_ssr_import_5__.CamelRouteVisualEntity));
	}
	toJSON() {
		// Entities are already in correct order from addNewEntity() and constructor
		return this.entities.map((entity) => entity.toJSON());
	}
	async toSourceCode() {
		const code = (0,__vite_ssr_import_1__.stringify)(this.toJSON(), { schema: "yaml-1.1" }) || "";
		return (0,__vite_ssr_import_2__.insertYamlComments)(code, this.comments);
	}
	createBeansEntity() {
		const newBeans = { beans: [] };
		const beansEntity = new __vite_ssr_import_18__.BeansEntity(newBeans);
		this.entities.push(beansEntity);
		return beansEntity;
	}
	deleteBeansEntity(entity) {
		const index = this.entities.findIndex((e) => e === entity);
		if (index !== -1) {
			this.entities.splice(index, 1);
		}
	}
	removeEntity(ids) {
		if (!(0,__vite_ssr_import_0__.isDefined)(ids)) return;
		this.entities = this.entities.filter((e) => !ids?.includes(e.id));
	}
	/** Components Catalog related methods */
	getCompatibleComponents(mode, visualEntityData, definition) {
		return [REDACTED:jwt](mode, visualEntityData, definition);
	}
	getCompatibleRuntimes() {
		return [
			"Main",
			"Quarkus",
			"Spring Boot"
		];
	}
	getEntity(rawItem) {
		if (!(0,__vite_ssr_import_0__.isDefined)(rawItem) || Array.isArray(rawItem)) {
			return undefined;
		};
		if ((0,__vite_ssr_import_18__.isBeans)(rawItem)) {
			return new __vite_ssr_import_18__.BeansEntity(rawItem);
		};
		for (const { Entity } of this.supportedEntities) {
			if (Entity.isApplicable(rawItem)) {
				return new Entity(rawItem);
			}
		};
		return new __vite_ssr_import_15__.NonVisualEntity(rawItem);
	}
}` provided a `camel.yaml` file extension
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > Initialization > should use the source code to initialize the Camel Resource
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > Initialization > should use the source code to initialize the Camel Resource
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > Initialization > should create an empty Camel Resource if there is no Source Code available
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > Initialization > should create an empty Camel Resource if there is no Source Code available
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > Initialization > should ignore non-camel entities
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > Initialization > should ignore non-camel entities
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > Initialization > should ignore non-camel entities
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > Initialization > should keep resource undefined when there is a wrong Source Code at mount
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > Initialization > should keep resource undefined when there is a wrong Source Code at mount
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > updating the source code should NOT recreate the Camel Resource
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > updating the source code should NOT recreate the Camel Resource
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should recreate the entities when the source code is updated
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should serialize using YAML 1.1
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should notify subscribers when the entities are updated
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > updating entities should NOT recreate the Camel Resource
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > updating entities should NOT recreate the Camel Resource
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should refresh entities
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should refresh entities
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should refresh entities and notify subscribers
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should store code's comments
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > should store code's comments
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > async initialization lifecycle > should reset entities and log when initialization rejects
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > async initialization lifecycle > should not read entities when unmounted before initialize resolves
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/entities.provider.test.tsx > EntitiesProvider > async initialization lifecycle > should not log when unmounted before initialize rejects
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Custom/Node/PlaceholderNode.test.tsx > PlaceholderNode > should render placeholder container with data-testid when vizNode is provided
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
The tag <foreignObject> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
The tag <g> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.

stderr | src/components/Visualization/Custom/Node/PlaceholderNode.test.tsx > PlaceholderNode > isSpecialChildPlaceholder > should render PlusCircleIcon for special child placeholder
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/PlaceholderNode.test.tsx > PlaceholderNode > isSpecialChildPlaceholder > should render PlusCircleIcon for regular placeholder
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/PlaceholderNode.test.tsx > PlaceholderNode > isSpecialChildPlaceholder > should render CodeBranchIcon for other placeholders
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/PlaceholderNode.test.tsx > PlaceholderNode > isSpecialChildPlaceholder > should call onInsertStep when clicking on special child placeholder
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/PlaceholderNode.test.tsx > PlaceholderNode > isSpecialChildPlaceholder > should call onReplaceNode when clicking on regular placeholder
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/PlaceholderNode.test.tsx > PlaceholderNode > isSpecialChildPlaceholder > should call onInsertStep when clicking on otherwise placeholder
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/PlaceholderNode.test.tsx > PlaceholderNode > isSpecialChildPlaceholder > should call onInsertStep when clicking on when placeholder
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Group/CustomGroupExpanded.test.tsx > CustomGroupExpanded > should render group container with data-testid when vizNode is provided
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
The tag <foreignObject> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.
The tag <g> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.

stderr | src/components/Visualization/Custom/Group/CustomGroupExpanded.test.tsx > CustomGroupExpanded > should fall back to iconAlt for the image alt text when description is empty
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Group/CustomGroupExpanded.test.tsx > CustomGroupExpanded > should render icon placeholder when group has validation warnings
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Group/CustomGroupExpanded.test.tsx > CustomGroupExpanded > should show toolbar when nodeToolbarTrigger is onSelection and group is selected (covers shouldShowToolbar branch)
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Group/CustomGroupExpanded.test.tsx > CustomGroupExpanded > calls getNodeDragAndDropDirection when droppable, canDrop and hover are true (line 162)
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/DataMapper/debug/DebugLayout.test.tsx > DebugLayout > Main Menu > should import and export mappings
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/DataMapper/debug/DebugLayout.test.tsx > DebugLayout > debug > should output debug info to console
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/pages/RestDslEditor/RestDslEditorPage.test.tsx > RestDslEditorPage > Entity Updates > should add REST method
A component suspended inside an `act` scope, but the `act` call was not awaited. When testing React components that depend on asynchronous data, you must await the result:

await act(() => ...)

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should open dropdown on focus regardless of current value
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should show all options when dropdown opens
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should not call onChange when typing
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should filter options when typing
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should call onChange when option is clicked
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should revert to selected label on blur
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should display label instead of value in dropdown
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should filter by description
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should open dropdown via toggle click
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should close dropdown via toggle click when open
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should clear filter text when clear button is clicked
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should not close when blur target is inside the listbox
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should display value in dropdown when option has no label
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should not call onChange when dropdown opens without selecting an option
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/TypeaheadSelect.test.tsx > TypeaheadSelect > should keep dropdown open when typing while already open
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/ContextToolbar/ExportDocument/ExportDocumentPreviewModal.test.tsx > ExportDocumentPreviewModal > renders the top toolbar
An update to GraphComponent inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/ContextToolbar/ExportDocument/ExportDocumentPreviewModal.test.tsx > ExportDocumentPreviewModal > shows loading spinner initially
An update to GraphComponent inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/ContextToolbar/ExportDocument/ExportDocumentPreviewModal.test.tsx > ExportDocumentPreviewModal > calls onClose when modal is closed
An update to GraphComponent inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/ContextToolbar/ExportDocument/ExportDocumentPreviewModal.test.tsx > ExportDocumentPreviewModal > initializes with documentation entities from DocumentationService
An update to GraphComponent inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/RootElementSelect.test.tsx > RootElementSelect > should call onChange with the matching RootElementOption when user selects
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/RootElementSelect.test.tsx > RootElementSelect > should distinguish same-name elements in different namespaces
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/RootElementSelect.test.tsx > RootElementSelect > should select correct option when same-name elements exist in different namespaces
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/RootElementSelect.test.tsx > RootElementSelect > should omit description when namespaceUri is empty
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/RootElementSelect.test.tsx > RootElementSelect > should filter options by typing
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/RootElementSelect.test.tsx > RootElementSelect > should filter by namespace description
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/AttachSchema/RootElementSelect.test.tsx > RootElementSelect > should not call onChange when typing
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/DataMapper/DataMapper.test.tsx > DataMapperPage > should render initial XSLT mappings with initial documents
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/DataMapper/DataMapper.test.tsx > DataMapperPage > should not render toolbar menu in embedded mode
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/DataMapper/DataMapper.test.tsx > DataMapperPage > should invoke updateMappingFile when reopening with existing metadata
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/DataMapper/DataMapper.test.tsx > DataMapperPage > should create XSLT file when metadata exists but file is missing
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/DataMapper/DataMapper.test.tsx > DataMapperPage > should not create XSLT file when it already exists
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/TypeaheadInput.test.tsx > TypeaheadInput > should call onChange when typing
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/TypeaheadInput.test.tsx > TypeaheadInput > should show only matching options when value filters
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/TypeaheadInput.test.tsx > TypeaheadInput > should filter options by description as well
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/TypeaheadInput.test.tsx > TypeaheadInput > should call onChange with selected value and close dropdown
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/TypeaheadInput.test.tsx > TypeaheadInput > should open dropdown on focus when value is empty and options exist
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/TypeaheadInput.test.tsx > TypeaheadInput > should close dropdown on blur
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/TypeaheadInput.test.tsx > TypeaheadInput > should call onChange with empty string when clear button is clicked
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/TypeaheadInput.test.tsx > TypeaheadInput > should set Select id with suffix when id is provided
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/TypeaheadInput.test.tsx > TypeaheadInput > should show all options when value is empty and dropdown is open
An update to Popper inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should toggle dropdown menu when button is clicked
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should toggle dropdown menu when button is clicked
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should render all dropdown items when menu is open
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should render all dropdown items when menu is open
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should open export modal when export button is clicked
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should open export modal when export button is clicked
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should open export modal when export button is clicked
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should open export modal when export button is clicked
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should open export modal when export button is clicked
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should close export modal when close button is clicked
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should close export modal when close button is clicked
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should close export modal when close button is clicked
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should close export modal when close button is clicked
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should close export modal when close button is clicked
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should close export modal when close button is clicked
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should close dropdown after import action completes
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should close dropdown after import action completes
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should render export modal with isOpen prop controlled by state
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should render export modal with isOpen prop controlled by state
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should render export modal with isOpen prop controlled by state
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should render export modal with isOpen prop controlled by state
The current testing environment is not configured to support act(...)

stderr | src/components/DataMapper/debug/MainMenuToolbarItem.test.tsx > MainMenuToolbarItem > should render export modal with isOpen prop controlled by state
The current testing environment is not configured to support act(...)
The current testing environment is not configured to support act(...)

stderr | src/components/Visualization/Custom/Node/CustomNodeContainer.test.tsx > CustomNodeContainer > should render the CustomNodeContainer correctly
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
The tag <foreignObject> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.

stderr | src/components/Visualization/Custom/Node/CustomNodeContainer.test.tsx > CustomNodeContainer > should render child count when childCount > 0
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/CustomNodeContainer.test.tsx > CustomNodeContainer > should not render child count when isCollapsed is false
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/CustomNodeContainer.test.tsx > CustomNodeContainer > should not render child count when childCount is 0
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/CustomNodeContainer.test.tsx > CustomNodeContainer > should render ProcessorIcon when provided
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/CustomNodeContainer.test.tsx > CustomNodeContainer > should not render ProcessorIcon when null
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/CustomNodeContainer.test.tsx > CustomNodeContainer > should render disabled icon when isDisabled is true
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/CustomNodeContainer.test.tsx > CustomNodeContainer > should not render disabled icon when isDisabled is false
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/CustomNodeContainer.test.tsx > CustomNodeContainer > should apply vizNode.data.description as title attribute on content
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/CustomNodeContainer.test.tsx > CustomNodeContainer > should render container with dataTestId and content together
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/Visualization/Custom/Node/CustomNodeContainer.test.tsx > CustomNodeContainer > should render Layers icon when hasGroupChildren is true
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Search Field > renders the search field
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Search Field > renders the search field
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Search Field > allows typing in the search field
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Search Field > allows typing in the search field
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Search Field > filters function list based on search input
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Search Field > filters function list based on search input
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Collapsible MenuGroups > renders function groups with toggle buttons
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Collapsible MenuGroups > renders function groups with toggle buttons
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Collapsible MenuGroups > groups are initially expanded and show functions
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Collapsible MenuGroups > groups are initially expanded and show functions
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Collapsible MenuGroups > collapses a group when toggle button is clicked
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Collapsible MenuGroups > collapses a group when toggle button is clicked
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Collapsible MenuGroups > expands a collapsed group when toggle button is clicked again
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Collapsible MenuGroups > expands a collapsed group when toggle button is clicked again
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Collapsible MenuGroups > allows collapsing groups while searching
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorLayout.test.tsx > XPathEditorLayout - Collapsible MenuGroups > allows collapsing groups while searching
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | FastRenderedViewLine.monospaceAssumptionsAreValid (/workspace/node_modules/monaco-editor/esm/vs/editor/browser/viewParts/viewLines/viewLine.js:285:25)
monospace assumptions have been violated, therefore disabling monospace optimizations!

stderr | src/hooks/use-processor-tooltips.hook.test.ts > useProcessorTooltips > should return empty object initially
An update to TestComponent inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Custom/Node/CustomNode.test.tsx > CustomNode > should render node container with label from vizNode
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
The tag <foreignObject> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
The tag <g> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.

1:16:09 AM [vite] (client) warning: "./${catalogLibraryEntry.fileName}" is not exported under the conditions ["node", "development", "import"] from package /workspace/node_modules/@kaoto/camel-catalog (see exports field in /workspace/node_modules/@kaoto/camel-catalog/package.json)
  Plugin: builtin:vite-resolve
stderr | src/components/View/SourcePanel.test.tsx > SourcePanel > should render action buttons by default
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourcePanel.test.tsx > SourcePanel > should render action buttons by default
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourcePanel.test.tsx > SourcePanel > should render action buttons by default
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourcePanel.test.tsx > SourcePanel > should not render action buttons if isReadOnly=true
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourcePanel.test.tsx > SourcePanel > should not render action buttons if isReadOnly=true
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourcePanel.test.tsx > SourcePanel > should not render action buttons if isReadOnly=true
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/SourcePanel.test.tsx > SourcePanel > should trigger handleLayoutChange when panel is toggled
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Visualization/Custom/Edge/CustomEdge.test.tsx > CustomEdge > should render edge with custom-edge class when edge is valid
The tag <path> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.
The tag <polygon> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.
The tag <g> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.
<foreignObject /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
The tag <foreignObject> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.

stderr | src/components/View/MappingLink.test.tsx > MappingLink > renders circles at endpoints
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/MappingLink.test.tsx > MappingLink > renders LinePath with correct testid
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/MappingLink.test.tsx > MappingLink > applies selected class when isSelected is true
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/MappingLink.test.tsx > MappingLink > calls toggleSelectedNode on line click
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/MappingLink.test.tsx > MappingLink > changes dot radius on mouse enter/leave
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/MappingLink.test.tsx > MappingLink > sets xlink:title attribute
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should render the Target panel with Body header
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should render the Target panel with Body header
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should render the Target panel with Body header
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should render the panel with correct id
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should render the panel with correct id
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should render the panel with correct id
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should hide the grab icon when the target body has a schema attached
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should render using ExpansionPanels
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should render using ExpansionPanels
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should render using ExpansionPanels
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should render the target body panel as collapsed when primitive (no schema)
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should render the target body panel as collapsed when primitive (no schema)
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/View/TargetPanel.test.tsx > TargetPanel > should render the target body panel as collapsed when primitive (no schema)
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/hooks/use-visible-viz-nodes.test.ts > useVisibleVizNodes > starts with an empty list and isResolving true before async resolution
An update to TestComponent inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to TestComponent inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/external/RouteVisualization/RouteVisualization.test.tsx > RouteVisualization > renders the canvas from the code prop without throwing
Received an empty string for a boolean attribute `inert`. This will treat the attribute as if it were false. Either pass `false` to silence this warning, or pass `true` if you used an empty string in earlier versions of React to indicate this attribute is true.

stderr | src/components/XPath/XPathEditorModal.test.tsx > XPathEditorModal > should render
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/XPath/XPathEditorModal.test.tsx > XPathEditorModal > should show popover when hint button is clicked
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/data-mapping-links.provider.test.tsx > DataMappingLinksProvider > isNodeInSelectedMapping() > should return false when no node is selected
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/data-mapping-links.provider.test.tsx > DataMappingLinksProvider > isNodeInSelectedMapping() > should call MappingLinksService when a node is selected
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to MappingLinksProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/Document/actions/XPathEditorAction.test.tsx > XPathEditorAction > should open xpath editor modal
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/source-code-sync.test.tsx > SourceCodeSync > seeds the store and emits code:updated on mount with the initial source code
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/source-code-sync.test.tsx > SourceCodeSync > clears the undo/redo history on mount
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/providers/source-code-sync.test.tsx > SourceCodeSync > updates the store source code upon an entities:updated notification
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/hooks/useEntityContext/useEntityContext.test.tsx > useEntityContext > should return EntityContext
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to EntitiesProvider inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

stderr | src/components/DataMapper/debug/DataMapperDebugger.test.tsx > Debug > should render and log connection ports
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act
An update to Root inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act

- - - detach here - - -

External status

Mutable upstream observation; unattested and separate from the signed run record.

PR state
MERGED
Review signal
APPROVED
CI state
SUCCESS
Upstream updated at
2026-07-14T13:27:04Z
Observed at
2026-07-14T23:05:52.969Z
MERGED

Linked maintainer review · open linked record

PR changed since this record. Recorded patch commit ffc3e052480163e7338e3164008c6a7a26a77605; current PR head observed at 2026-07-14T23:05:52.969Z: 00d27e70410dc78f0fcda582b987d515dc8b5817. The patch commit is declared source metadata, not an execution-bound identity; only the recorded patch bytes are bound to this receipt.

FOR MAINTAINERS

Request a private run

Maintain an open-source project? Send Northset a PR already in your queue. We run its repository-declared checks in an isolated container and return the run record privately. We do not modify the PR. Nothing is published without your approval. Free during the pilot.

The issue form is public. Do not include secrets or private repository details there; use email instead.

Already onboarded? Add northset-verify to a PR to request a run on that PR.

Claims boundary

This page reports scoped proof-of-pass receipt evidence. It does not prove code quality, security, full CI coverage, production readiness, or maintainer approval. An attestation confirms bundle provenance; it does not broaden the receipt's claim.

Read the full Claims Boundary policy.