-
Notifications
You must be signed in to change notification settings - Fork 5.1k
chore: hide stuff #38882
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
chore: hide stuff #38882
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Test results for "MCP"2 failed 2817 passed, 106 skipped Merge workflow run. |
| reportSlowTests: takeFirst(userConfig.reportSlowTests, { max: 5, threshold: 300_000 /* 5 minutes */ }), | ||
| runAgents: takeFirst(configCLIOverrides.runAgents, userConfig.runAgents, 'none'), | ||
| // @ts-expect-error runAgents is hidden | ||
| runAgents: takeFirst(configCLIOverrides.runAgents, 'none'), |
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.
Note for the future - this should move from FullConfig to FullConfigInternal
Test results for "tests 1"12 failed 7 flaky34654 passed, 695 skipped Merge workflow run. |
This reapplies the doclint improvements from microsoft#38882 that were accidentally reverted in microsoft#38917. The changes: - Check for hidden metadata early in parseMember, before looking up the class (allows hiding members on hidden classes) - Check for hidden metadata in parseArgument for params/options (allows hiding individual parameters)
Not ready for primetime!