Skip to content
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 fix-conditional-param-leak #55

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion tests/baselines/reference/docker/office-ui-fabric.log
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,15 @@ office-ui-fabric-react: ~~~~~~~~~~~~~~~~~
office-ui-fabric-react: src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.tsx:70:38 - error TS2554: Expected 1 arguments, but got 2.
office-ui-fabric-react: 70 {onRenderField(this.props, this._onRenderField)}
office-ui-fabric-react: ~~~~~~~~~~~~~~~~~~~
office-ui-fabric-react: src/components/ComboBox/ComboBox.tsx:329:7 - error TS6133: 'onRenderList' is declared but its value is never read.
office-ui-fabric-react: 329 onRenderList = this._onRenderList,
office-ui-fabric-react: ~~~~~~~~~~~~
office-ui-fabric-react: src/components/ComboBox/ComboBox.tsx:330:7 - error TS6133: 'onRenderItem' is declared but its value is never read.
office-ui-fabric-react: 330 onRenderItem = this._onRenderItem,
office-ui-fabric-react: ~~~~~~~~~~~~
office-ui-fabric-react: src/components/ComboBox/ComboBox.tsx:331:7 - error TS6133: 'onRenderOption' is declared but its value is never read.
office-ui-fabric-react: 331 onRenderOption = this._onRenderOptionContent,
office-ui-fabric-react: ~~~~~~~~~~~~~~
office-ui-fabric-react: src/components/ComboBox/ComboBox.tsx:457:13 - error TS2554: Expected 1 arguments, but got 2.
office-ui-fabric-react: 457 this._onRenderContainer
office-ui-fabric-react: ~~~~~~~~~~~~~~~~~~~~~~~
Expand Down Expand Up @@ -222,7 +231,7 @@ office-ui-fabric-react: ~~~~~~~~~~~~~~~~~~~~
office-ui-fabric-react: src/components/pickers/Suggestions/SuggestionsItem.tsx:8:31 - error TS2307: Cannot find module './Suggestions.scss'.
office-ui-fabric-react: 8 import * as stylesImport from './Suggestions.scss';
office-ui-fabric-react: ~~~~~~~~~~~~~~~~~~~~
office-ui-fabric-react: Found 22 errors.
office-ui-fabric-react: Found 25 errors.
office-ui-fabric-react: [XX:XX:XX XM] x ------------------------------------
office-ui-fabric-react: [XX:XX:XX XM] x Error previously detected. See above for error messages.
office-ui-fabric-react: [XX:XX:XX XM] x Other tasks that did not complete: [ts:commonjs]
Expand Down
21 changes: 2 additions & 19 deletions tests/baselines/reference/docker/vscode.log
Original file line number Diff line number Diff line change
@@ -1,28 +1,11 @@
Exit Code: 1
Exit Code: 0
Standard output:
yarn run vX.X.X
$ gulp compile --max_old_space_size=4095
[XX:XX:XX] Node flags detected: --max_old_space_size=4095
[XX:XX:XX] Using gulpfile /vscode/gulpfile.js
[XX:XX:XX] Error: /vscode/src/vs/workbench/contrib/remote/browser/remote.ts(637,8): Parameter 'choice' implicitly has an 'any' type.
[XX:XX:XX] Error: /vscode/src/vs/workbench/contrib/remote/browser/remote.ts(652,8): Parameter 'choice' implicitly has an 'any' type.
[XX:XX:XX] Error: /vscode/src/vs/workbench/contrib/remote/browser/remote.ts(637,8): Parameter 'choice' implicitly has an 'any' type.
[XX:XX:XX] Error: /vscode/src/vs/workbench/contrib/remote/browser/remote.ts(652,8): Parameter 'choice' implicitly has an 'any' type.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Done in ?s.



Standard error:
[XX:XX:XX] 'compile' errored after
[XX:XX:XX] Error: Found 2 errors
at Stream.<anonymous> (/vscode/build/lib/reporter.js:74:29)
at _end (/vscode/node_modules/through/index.js:65:9)
at Stream.stream.end (/vscode/node_modules/through/index.js:74:5)
at Stream.onend (internal/streams/legacy.js:42:10)
at Stream.emit (events.js:203:15)
at Stream.EventEmitter.emit (domain.js:466:23)
at drain (/vscode/node_modules/through/index.js:34:23)
at Stream.stream.queue.stream.push (/vscode/node_modules/through/index.js:45:5)
at Stream.end (/vscode/node_modules/through/index.js:15:35)
at _end (/vscode/node_modules/through/index.js:65:9)
error Command failed with exit code 1.
3 changes: 3 additions & 0 deletions tests/baselines/reference/user/adonis-framework.log
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ node_modules/adonis-framework/src/Encryption/index.js(71,34): error TS2769: No o
Argument of type 'string' is not assignable to parameter of type 'undefined'.
Overload 2 of 4, '(data: string, input_encoding: "utf8" | "ascii" | "binary" | undefined, output_encoding: HexBase64BinaryEncoding): string', gave the following error.
Argument of type 'string' is not assignable to parameter of type '"utf8" | "ascii" | "binary" | undefined'.
node_modules/adonis-framework/src/Encryption/index.js(77,27): error TS2322: Type 'string' is not assignable to type 'Buffer'.
node_modules/adonis-framework/src/Encryption/index.js(77,50): error TS2345: Argument of type 'Buffer' is not assignable to parameter of type 'string'.
node_modules/adonis-framework/src/Encryption/index.js(85,23): error TS8024: JSDoc '@param' tag has name 'value', but there is no parameter with that name.
node_modules/adonis-framework/src/Encryption/index.js(87,15): error TS2304: Cannot find name 'Mixed'.
Expand All @@ -32,6 +33,8 @@ node_modules/adonis-framework/src/Encryption/index.js(101,62): error TS2769: No
Argument of type 'string' is not assignable to parameter of type 'Utf8AsciiBinaryEncoding'.
Overload 2 of 4, '(data: string, input_encoding: "base64" | "binary" | "hex" | undefined, output_encoding: Utf8AsciiBinaryEncoding): string', gave the following error.
Argument of type 'string' is not assignable to parameter of type 'Utf8AsciiBinaryEncoding'.
node_modules/adonis-framework/src/Encryption/index.js(102,5): error TS2322: Type 'string' is not assignable to type 'Buffer & string'.
Type 'string' is not assignable to type 'Buffer'.
node_modules/adonis-framework/src/Encryption/index.js(114,15): error TS2304: Cannot find name 'Mixed'.
node_modules/adonis-framework/src/Encryption/index.js(119,23): error TS2554: Expected 2 arguments, but got 1.
node_modules/adonis-framework/src/Encryption/index.js(183,15): error TS2304: Cannot find name 'Mixed'.
Expand Down
2 changes: 0 additions & 2 deletions tests/baselines/reference/user/bcryptjs.log
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ node_modules/bcryptjs/src/bcrypt/impl.js(658,23): error TS2345: Argument of type
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[]'.
Type 'undefined' is not assignable to type 'number[]'.
node_modules/bcryptjs/src/bcrypt/prng/accum.js(51,74): error TS2339: Property 'attachEvent' does not exist on type 'Document'.
node_modules/bcryptjs/src/bcrypt/prng/accum.js(52,22): error TS2339: Property 'attachEvent' does not exist on type 'Document'.
node_modules/bcryptjs/src/bcrypt/prng/accum.js(53,22): error TS2339: Property 'attachEvent' does not exist on type 'Document'.
Expand Down
6 changes: 4 additions & 2 deletions tests/baselines/reference/user/bluebird.log
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ node_modules/bluebird/js/release/bluebird.js(10,10): error TS2339: Property 'noC
node_modules/bluebird/js/release/debuggability.js(225,17): error TS2403: Subsequent variable declarations must have the same type. Variable 'event' must be of type 'CustomEvent<any>', but here has type 'Event'.
node_modules/bluebird/js/release/debuggability.js(232,26): error TS2339: Property 'detail' does not exist on type 'Event'.
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'.
node_modules/bluebird/js/release/debuggability.js(301,28): error TS2684: The 'this' context of type '((...args: any[]) => Process) | ((name: any, ...args: any[]) => boolean)' is not assignable to method's 'this' of type '(this: null, name?: any, ...args: any[]) => Process'.
Type '(name: any, ...args: any[]) => boolean' is not assignable to type '(this: null, name?: any, ...args: any[]) => Process'.
Type 'boolean' is not assignable to type 'Process'.
node_modules/bluebird/js/release/debuggability.js(562,19): error TS2350: Only a void function can be called with the 'new' keyword.
node_modules/bluebird/js/release/debuggability.js(633,59): error TS2554: Expected 0 arguments, but got 1.
node_modules/bluebird/js/release/debuggability.js(807,5): error TS2721: Cannot invoke an object which is possibly 'null'.
Expand Down
Loading