You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Component tests improperly report the same uncaught error multiple times - likely caused by differences in architecture between e2e and ct which allows multiple error listeners to process the uncaught error. Logic changes were made to some tests to account for this during CT Stacktrace work (see .should(mode === 'component' ? 'have.length.gte' : 'have.length', 1) line of verify-failures.ts)
To reproduce, create a component that throws an error from a click listener then invoke that listener via a component test.
The text was updated successfully, but these errors were encountered:
Component tests improperly report the same uncaught error multiple times - likely caused by differences in architecture between e2e and ct which allows multiple error listeners to process the uncaught error. Logic changes were made to some tests to account for this during CT Stacktrace work (see
.should(mode === 'component' ? 'have.length.gte' : 'have.length', 1)
line ofverify-failures.ts
)To reproduce, create a component that throws an error from a click listener then invoke that listener via a component test.
The text was updated successfully, but these errors were encountered: