-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
ProComponents 3.0 开发 #8179
base: master
Are you sure you want to change the base?
ProComponents 3.0 开发 #8179
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #8179 +/- ##
==========================================
+ Coverage 97.26% 97.57% +0.31%
==========================================
Files 303 298 -5
Lines 9573 9336 -237
Branches 3551 3433 -118
==========================================
- Hits 9311 9110 -201
+ Misses 236 199 -37
- Partials 26 27 +1 ☔ View full report in Codecov by Sentry. |
👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎ This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored. |
New and removed dependencies detected. Learn more about Socket for GitHub ↗︎
🚮 Removed packages: npm/@testing-library/[email protected], npm/[email protected] |
{ | ||
text: dataValue as React.ReactNode, | ||
...props, | ||
mode: mode || 'read', |
Check warning
Code scanning / CodeQL
Useless conditional Warning
{ | ||
text: dataValue as React.ReactNode, | ||
...props, | ||
mode: mode || 'read', |
Check warning
Code scanning / CodeQL
Useless conditional Warning
renderFormItem 修改为 formItemRender |
@@ -48,7 +49,11 @@ | |||
}); | |||
|
|||
expect(valueFn).toHaveBeenCalledWith(['111']); | |||
<<<<<<< HEAD |
Check notice
Code scanning / CodeQL
Syntax error Note test
@@ -48,7 +49,11 @@ | |||
}); | |||
|
|||
expect(valueFn).toHaveBeenCalledWith(['111']); | |||
<<<<<<< HEAD | |||
expect(valueFn).toHaveBeenCalledTimes(1); | |||
======= |
Check notice
Code scanning / CodeQL
Syntax error Note test
expect(valueFn).toBeCalledTimes(1); | ||
>>>>>>> master |
Check notice
Code scanning / CodeQL
Syntax error Note test
@@ -96,7 +101,11 @@ | |||
}); | |||
|
|||
expect(valueFn).toHaveBeenCalledWith(['111']); | |||
<<<<<<< HEAD |
Check notice
Code scanning / CodeQL
Syntax error Note test
@@ -96,7 +101,11 @@ | |||
}); | |||
|
|||
expect(valueFn).toHaveBeenCalledWith(['111']); | |||
<<<<<<< HEAD | |||
expect(valueFn).toHaveBeenCalledTimes(1); | |||
======= |
Check notice
Code scanning / CodeQL
Syntax error Note test
expect(valueFn).toBeCalledTimes(1); | ||
>>>>>>> master |
Check notice
Code scanning / CodeQL
Syntax error Note test
ref #8178