-
Notifications
You must be signed in to change notification settings - Fork 12.8k
🤖 User test baselines have changed #33083
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Exit Code: 1 | ||
Standard output: | ||
src/config/passport.ts(136,25): error TS2339: Property 'tokens' does not exist on type 'User'. | ||
src/controllers/api.ts(22,28): error TS2339: Property 'tokens' does not exist on type 'User'. | ||
src/controllers/api.ts(24,27): error TS2339: Property 'facebook' does not exist on type 'User'. | ||
src/controllers/user.ts(145,28): error TS2339: Property 'id' does not exist on type 'User'. | ||
src/controllers/user.ts(181,28): error TS2339: Property 'id' does not exist on type 'User'. | ||
src/controllers/user.ts(197,33): error TS2339: Property 'id' does not exist on type 'User'. | ||
src/controllers/user.ts(211,28): error TS2339: Property 'id' does not exist on type 'User'. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. pretty sure this is @types/express' fault because it's fine pre-npm-install on both 3.5 and 3.7. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep, this is a DT change that should be reverted. |
||
|
||
|
||
|
||
Standard error: |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,8 +115,6 @@ node_modules/async/dist/async.js(1768,32): error TS2532: Object is possibly 'und | |
node_modules/async/dist/async.js(1768,38): error TS2532: Object is possibly 'undefined'. | ||
node_modules/async/dist/async.js(1769,3): error TS2532: Object is possibly 'undefined'. | ||
node_modules/async/dist/async.js(1773,35): error TS2532: Object is possibly 'undefined'. | ||
node_modules/async/dist/async.js(1951,10): error TS1003: Identifier expected. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. more lenient jsdoc parsing? (there is a stray trailing |
||
node_modules/async/dist/async.js(1951,10): error TS8024: JSDoc '@param' tag has name '', but there is no parameter with that name. | ||
node_modules/async/dist/async.js(1990,16): error TS2554: Expected 3 arguments, but got 1. | ||
node_modules/async/dist/async.js(2116,20): error TS2345: Argument of type 'Function | undefined' is not assignable to parameter of type 'number | undefined'. | ||
Type 'Function' is not assignable to type 'number'. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -299,7 +299,6 @@ node_modules/bluebird/js/release/using.js(78,20): error TS2339: Property 'doDisp | |
node_modules/bluebird/js/release/using.js(97,23): error TS2339: Property 'data' does not exist on type 'FunctionDisposer'. | ||
node_modules/bluebird/js/release/using.js(131,72): error TS2339: Property 'classString' does not exist on type 'typeof ret'. | ||
node_modules/bluebird/js/release/using.js(223,15): error TS2350: Only a void function can be called with the 'new' keyword. | ||
node_modules/bluebird/js/release/util.js(200,32): error TS2339: Property 'foo' does not exist on type 'FakeConstructor'. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. prototype now has type any, which means that all property accesses are allowed now. |
||
node_modules/bluebird/js/release/util.js(279,45): error TS2345: Argument of type 'PropertyDescriptor | { value: any; } | undefined' is not assignable to parameter of type 'PropertyDescriptor & ThisType<any>'. | ||
Type 'undefined' is not assignable to type 'PropertyDescriptor & ThisType<any>'. | ||
Type 'undefined' is not assignable to type 'PropertyDescriptor'. | ||
|
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.
these warnings are new, and might be bad.