-
Notifications
You must be signed in to change notification settings - Fork 13.2k
🤖 User test baselines have changed for refs/heads/master #36678
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
🤖 User test baselines have changed for refs/heads/master #36678
Conversation
a2f374b to
0ba5ea2
Compare
0ba5ea2 to
64452e8
Compare
|
Very likely a result of #36665 |
sandersn
left a comment
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.
Almost all the errors are from improved reporting on erroneous calls.
Good: more follow-on errors
Bad: errors on subsequent parameters are squelched, even those deep inside function expressions.
Ugly: I didn't investigate the office-ui-fabric errors.
| Type 'undefined' is not assignable to type 'number[]'. | ||
| node_modules/bcryptjs/src/bcrypt/impl.js(664,31): error TS2345: Argument of type 'null' is not assignable to parameter of type 'string | undefined'. | ||
| node_modules/bcryptjs/src/bcrypt/impl.js(666,26): error TS2345: Argument of type 'null' is not assignable to parameter of type 'Error'. | ||
| node_modules/bcryptjs/src/bcrypt/impl.js(666,39): error TS2345: Argument of type 'number[] | undefined' is not assignable to parameter of type 'number[]'. |
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.
not sure why we now stop giving both errors on a call with two errors
| node_modules/bluebird/js/release/debuggability.js(258,48): error TS2345: Argument of type 'IArguments' is not assignable to parameter of type '["multipleResolves", MultipleResolveListener]'. | ||
| node_modules/bluebird/js/release/debuggability.js(301,56): error TS2345: Argument of type 'IArguments' is not assignable to parameter of type 'any[]'. | ||
| Type 'IArguments' is missing the following properties from type 'any[]': pop, push, concat, join, and 26 more. | ||
| node_modules/bluebird/js/release/debuggability.js(301,9): error TS2322: Type 'Process' is not assignable to type 'boolean'. |
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.
this new error is much better.
| node_modules/lodash/_createHybrid.js(65,31): error TS2532: Object is possibly 'undefined'. | ||
| node_modules/lodash/_createHybrid.js(68,9): error TS2345: Argument of type 'TimerHandler' is not assignable to parameter of type 'Function'. | ||
| Type 'string' is not assignable to type 'Function'. | ||
| node_modules/lodash/_createHybrid.js(68,46): error TS2339: Property 'placeholder' does not exist on type '(...args: any[]) => any'. |
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 -- subsequent errors are not reported
| Type 'T' is not assignable to type 'symbol'. | ||
| Type 'string | number | symbol' is not assignable to type 'symbol'. | ||
| Type 'string' is not assignable to type 'symbol'. | ||
| lib/Page.js(94,42): error TS2345: Argument of type 'Worker' is not assignable to parameter of type 'Worker'. |
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.
from an update in puppeteer. (this error is from a bug, but it's a known bug)
| node_modules/npm/lib/install.js(985,53): error TS2339: Property 'config' does not exist on type 'typeof EventEmitter'. | ||
| node_modules/npm/lib/install.js(1007,53): error TS2339: Property 'config' does not exist on type 'typeof EventEmitter'. | ||
| node_modules/npm/lib/install/access-error.js(4,60): error TS2554: Expected 0-1 arguments, but got 2. | ||
| node_modules/npm/lib/install/access-error.js(5,12): error TS2339: Property 'code' does not exist on type 'Error'. |
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'm not sure why we didn't issue an error here before. It might be because of the erroneous call on the previous line, but the type is reported as Error, not any.
| node_modules/uglify-js/lib/compress.js(3276,42): error TS2554: Expected 0 arguments, but got 1. | ||
| node_modules/uglify-js/lib/compress.js(3355,33): error TS2532: Object is possibly 'undefined'. | ||
| node_modules/uglify-js/lib/compress.js(3762,38): error TS2554: Expected 0 arguments, but got 1. | ||
| node_modules/uglify-js/lib/compress.js(3788,29): error TS2322: Type '"f"' is not assignable to type 'boolean'. |
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.
errors inside the function expression are squelched because the signature didn't expect arguments. this seems bad.
This test run was triggerd by a request on #33716
Please review the diff and merge if no changes are unexpected.
You can view the build log here.
cc @microsoft/typescript