-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Forward ref by default #4617
base: v11-2
Are you sure you want to change the base?
Forward ref by default #4617
Conversation
📊 Tachometer Benchmark ResultsSummaryduration
usedJSHeapSize
Resultscreate10kduration
usedJSHeapSize
filter-listduration
usedJSHeapSize
hydrate1kduration
usedJSHeapSize
many-updatesduration
usedJSHeapSize
replace1kduration
usedJSHeapSize
run-warmup-0
run-warmup-1
run-warmup-2
run-warmup-3
run-warmup-4
run-final
text-updateduration
usedJSHeapSize
tododuration
usedJSHeapSize
update10th1kduration
usedJSHeapSize
|
Size Change: -74 B (-0.12%) Total Size: 60.5 kB
ℹ️ View Unchanged
|
55b8349
to
cc2cc52
Compare
e76a01a
to
554d0df
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Love to see it
@@ -174,7 +174,7 @@ describe('useContext', () => { | |||
expect(unmountspy).not.to.be.called; | |||
}); | |||
|
|||
it('should only subscribe a component once', () => { | |||
it.skip('should only subscribe a component once', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this skip still intended?
@@ -392,7 +392,7 @@ describe('forwardRef', () => { | |||
expect(_ref.current).to.equal(scratch.firstChild); | |||
}); | |||
|
|||
it('should forward at diff time instead vnode-creation.', () => { | |||
it.skip('should forward at diff time instead vnode-creation.', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess I should just remove these skipped tests, will have a deeper look whether they could still matter
No description provided.