Skip to content

Commit 7928a53

Browse files
Update user baselines +cc @sandersn
1 parent 64d0538 commit 7928a53

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1092
-807
lines changed

tests/baselines/reference/docker/azure-sdk.log

+49-25
Large diffs are not rendered by default.

tests/baselines/reference/docker/office-ui-fabric.log

+467-197
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
1-
Exit Code: 2
1+
Exit Code: 0
22
Standard output:
3-
pyright-internal: src/tests/harness/utils.ts(328,12): error TS2774: This condition will always return true since the function is always defined. Did you mean to call it instead?
43

54

65

76
Standard error:
87
lerna notice cli vX.X.X
98
lerna info Executing command in 3 packages: "tsc --noEmit"
10-
lerna ERR! Received non-zero exit code 2 during execution
119
lerna success exec Executed command in 3 packages: "tsc --noEmit"
12-
npm ERR! code 2
13-
npm ERR! path /pyright
14-
npm ERR! command failed
15-
npm ERR! command sh -c lerna exec --stream --concurrency 1 --no-bail -- tsc --noEmit
16-
npm ERR! A complete log of this run can be found in:
17-
npm ERR! /root/.npm/_logs/XXXX-XX-XXXXXXXXX-debug.log

tests/baselines/reference/docker/vue-next.log

+79-165
Large diffs are not rendered by default.

tests/baselines/reference/user/TypeScript-Node-Starter.log

+43-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,51 @@
11
Exit Code: 2
22
Standard output:
3+
../../../../../built/local/lib.dom.d.ts(618,5): error TS2687: All declarations of 'url' must have identical modifiers.
4+
node_modules/@types/node/globals.d.ts(163,5): error TS2687: All declarations of 'url' must have identical modifiers.
35
node_modules/connect-mongo/src/types.d.ts(113,66): error TS2694: Namespace 'Express' has no exported member 'SessionData'.
46
node_modules/connect-mongo/src/types.d.ts(114,45): error TS2694: Namespace 'Express' has no exported member 'SessionData'.
57
node_modules/connect-mongo/src/types.d.ts(118,47): error TS2694: Namespace 'Express' has no exported member 'SessionData'.
6-
src/app.ts(72,21): error TS2339: Property 'returnTo' does not exist on type 'Session | InitializedSession'.
7-
Property 'returnTo' does not exist on type 'Session'.
8-
src/app.ts(75,21): error TS2339: Property 'returnTo' does not exist on type 'Session | InitializedSession'.
9-
Property 'returnTo' does not exist on type 'Session'.
10-
src/app.ts(116,30): error TS2339: Property 'returnTo' does not exist on type 'Session | InitializedSession'.
11-
Property 'returnTo' does not exist on type 'Session'.
12-
src/controllers/user.ts(51,38): error TS2339: Property 'returnTo' does not exist on type 'Session | InitializedSession'.
13-
Property 'returnTo' does not exist on type 'Session'.
8+
src/app.ts(31,10): error TS2540: Cannot assign to 'Promise' because it is a read-only property.
9+
src/app.ts(72,21): error TS2339: Property 'returnTo' does not exist on type 'Session & Partial<SessionData>'.
10+
src/app.ts(75,21): error TS2339: Property 'returnTo' does not exist on type 'Session & Partial<SessionData>'.
11+
src/app.ts(116,30): error TS2339: Property 'returnTo' does not exist on type 'Session & Partial<SessionData>'.
12+
src/config/passport.ts(14,5): error TS2349: This expression is not callable.
13+
Type 'User' has no call signatures.
14+
src/config/passport.ts(18,24): error TS7006: Parameter 'err' implicitly has an 'any' type.
15+
src/config/passport.ts(18,29): error TS7006: Parameter 'user' implicitly has an 'any' type.
16+
src/config/passport.ts(28,51): error TS7006: Parameter 'err' implicitly has an 'any' type.
17+
src/config/passport.ts(71,49): error TS7006: Parameter 'err' implicitly has an 'any' type.
18+
src/config/passport.ts(71,54): error TS7006: Parameter 'existingUser' implicitly has an 'any' type.
19+
src/config/passport.ts(77,45): error TS7006: Parameter 'err' implicitly has an 'any' type.
20+
src/config/passport.ts(92,49): error TS7006: Parameter 'err' implicitly has an 'any' type.
21+
src/config/passport.ts(92,54): error TS7006: Parameter 'existingUser' implicitly has an 'any' type.
22+
src/config/passport.ts(97,59): error TS7006: Parameter 'err' implicitly has an 'any' type.
23+
src/config/passport.ts(97,64): error TS7006: Parameter 'existingEmailUser' implicitly has an 'any' type.
24+
src/controllers/user.ts(51,38): error TS2339: Property 'returnTo' does not exist on type 'Session & Partial<SessionData>'.
25+
src/controllers/user.ts(101,46): error TS7006: Parameter 'err' implicitly has an 'any' type.
26+
src/controllers/user.ts(101,51): error TS7006: Parameter 'existingUser' implicitly has an 'any' type.
27+
src/controllers/user.ts(146,29): error TS7006: Parameter 'err' implicitly has an 'any' type.
28+
src/controllers/user.ts(153,19): error TS2769: No overload matches this call.
29+
Overload 1 of 3, '(options?: SaveOptions): Promise<UserDocument>', gave the following error.
30+
Type '(err: WriteError) => void' has no properties in common with type 'SaveOptions'.
31+
Overload 2 of 3, '(options?: SaveOptions, fn?: (err: NativeError, doc: UserDocument) => void): void', gave the following error.
32+
Type '(err: WriteError) => void' has no properties in common with type 'SaveOptions'.
33+
Overload 3 of 3, '(fn?: (err: NativeError, doc: UserDocument) => void): void', gave the following error.
34+
Argument of type '(err: WriteError) => void' is not assignable to parameter of type '(err: NativeError, doc: UserDocument) => void'.
35+
Types of parameters 'err' and 'err' are incompatible.
36+
Type 'NativeError' is missing the following properties from type 'WriteError': code, index, errmsg
37+
src/controllers/user.ts(183,29): error TS7006: Parameter 'err' implicitly has an 'any' type.
38+
src/controllers/user.ts(186,19): error TS2769: No overload matches this call.
39+
Overload 1 of 3, '(options?: SaveOptions): Promise<UserDocument>', gave the following error.
40+
Type '(err: WriteError) => void' has no properties in common with type 'SaveOptions'.
41+
Overload 2 of 3, '(options?: SaveOptions, fn?: (err: NativeError, doc: UserDocument) => void): void', gave the following error.
42+
Type '(err: WriteError) => void' has no properties in common with type 'SaveOptions'.
43+
Overload 3 of 3, '(fn?: (err: NativeError, doc: UserDocument) => void): void', gave the following error.
44+
Argument of type '(err: WriteError) => void' is not assignable to parameter of type '(err: NativeError, doc: UserDocument) => void'.
45+
Types of parameters 'err' and 'err' are incompatible.
46+
Type 'NativeError' is not assignable to type 'WriteError'.
47+
src/controllers/user.ts(215,29): error TS7006: Parameter 'err' implicitly has an 'any' type.
48+
src/controllers/user.ts(349,54): error TS7006: Parameter 'err' implicitly has an 'any' type.
1449

1550

1651

tests/baselines/reference/user/TypeScript-WeChat-Starter.log

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
Exit Code: 2
22
Standard output:
3-
node_modules/@types/connect/index.d.ts(21,42): error TS2689: Cannot extend an interface 'http.IncomingMessage'. Did you mean 'implements'?
4-
node_modules/@types/serve-static/index.d.ts(18,45): error TS2694: Namespace '"http"' has no exported member 'OutgoingMessage'.
5-
node_modules/@types/serve-static/index.d.ts(25,49): error TS2694: Namespace '"http"' has no exported member 'OutgoingMessage'.
6-
node_modules/@types/serve-static/index.d.ts(25,72): error TS2694: Namespace '"http"' has no exported member 'OutgoingMessage'.
7-
node_modules/@types/serve-static/index.d.ts(98,45): error TS2694: Namespace '"http"' has no exported member 'OutgoingMessage'.
8-
node_modules/@types/serve-static/index.d.ts(102,56): error TS2694: Namespace '"http"' has no exported member 'OutgoingMessage'.
3+
node_modules/@types/connect/index.d.ts(20,42): error TS2689: Cannot extend an interface 'http.IncomingMessage'. Did you mean 'implements'?
94

105

116

tests/baselines/reference/user/acorn.log

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Exit Code: 2
22
Standard output:
3+
../../../../built/local/lib.dom.d.ts(618,5): error TS2687: All declarations of 'url' must have identical modifiers.
4+
node_modules/@types/node/globals.d.ts(30,5): error TS2687: All declarations of 'url' must have identical modifiers.
5+
node_modules/@types/node/globals.d.ts(30,5): error TS2717: Subsequent property declarations must have the same type. Property 'url' must be of type 'string | undefined', but here has type 'string'.
36
node_modules/acorn/acorn-loose/dist/acorn-loose.js(3,10): error TS2304: Cannot find name 'define'.
47
node_modules/acorn/acorn-loose/dist/acorn-loose.js(3,35): error TS2304: Cannot find name 'define'.
58
node_modules/acorn/acorn-loose/dist/acorn-loose.js(3,48): error TS2304: Cannot find name 'define'.
@@ -484,27 +487,21 @@ node_modules/acorn/acorn/dist/bin.js(58,23): error TS2769: No overload matches t
484487
Type 'undefined' is not assignable to type 'string | number | Buffer | URL'.
485488
Overload 2 of 3, '(path: string | number | Buffer | URL, options: { encoding: BufferEncoding; flag?: string | undefined; } | "ascii" | "utf8" | "utf-8" | "utf16le" | "ucs2" | ... 4 more ... | "hex"): string', gave the following error.
486489
Argument of type 'string | undefined' is not assignable to parameter of type 'string | number | Buffer | URL'.
487-
Type 'undefined' is not assignable to type 'string | number | Buffer | URL'.
488490
Overload 3 of 3, '(path: string | number | Buffer | URL, options?: "ascii" | "utf8" | "utf-8" | "utf16le" | "ucs2" | "ucs-2" | "base64" | "latin1" | "binary" | "hex" | (BaseEncodingOptions & { ...; }) | null | undefined): string | Buffer', gave the following error.
489491
Argument of type 'string | undefined' is not assignable to parameter of type 'string | number | Buffer | URL'.
490-
Type 'undefined' is not assignable to type 'string | number | Buffer | URL'.
491492
node_modules/acorn/bin/_acorn.js(51,30): error TS2339: Property 'getToken' does not exist on type 'Parser'.
492493
node_modules/acorn/bin/_acorn.js(59,30): error TS2769: No overload matches this call.
493494
Overload 1 of 2, '(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string', gave the following error.
494495
Argument of type 'null' is not assignable to parameter of type '((this: any, key: string, value: any) => any) | undefined'.
495496
Overload 2 of 2, '(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string', gave the following error.
496497
Argument of type '2 | null' is not assignable to parameter of type 'string | number | undefined'.
497-
Type 'null' is not assignable to type 'string | number | undefined'.
498498
node_modules/acorn/bin/_acorn.js(63,23): error TS2769: No overload matches this call.
499499
Overload 1 of 3, '(path: string | number | Buffer | URL, options?: { encoding?: null | undefined; flag?: string | undefined; } | null | undefined): Buffer', gave the following error.
500500
Argument of type 'string | undefined' is not assignable to parameter of type 'string | number | Buffer | URL'.
501-
Type 'undefined' is not assignable to type 'string | number | Buffer | URL'.
502501
Overload 2 of 3, '(path: string | number | Buffer | URL, options: { encoding: BufferEncoding; flag?: string | undefined; } | "ascii" | "utf8" | "utf-8" | "utf16le" | "ucs2" | ... 4 more ... | "hex"): string', gave the following error.
503502
Argument of type 'string | undefined' is not assignable to parameter of type 'string | number | Buffer | URL'.
504-
Type 'undefined' is not assignable to type 'string | number | Buffer | URL'.
505503
Overload 3 of 3, '(path: string | number | Buffer | URL, options?: "ascii" | "utf8" | "utf-8" | "utf16le" | "ucs2" | "ucs-2" | "base64" | "latin1" | "binary" | "hex" | (BaseEncodingOptions & { ...; }) | null | undefined): string | Buffer', gave the following error.
506504
Argument of type 'string | undefined' is not assignable to parameter of type 'string | number | Buffer | URL'.
507-
Type 'undefined' is not assignable to type 'string | number | Buffer | URL'.
508505
node_modules/acorn/bin/run_test262.js(3,21): error TS2307: Cannot find module 'test262-parser-runner' or its corresponding type declarations.
509506
node_modules/acorn/dist/acorn.es.js(36,1): error TS2322: Type 'null' is not assignable to type 'string'.
510507
node_modules/acorn/dist/acorn.es.js(36,32): error TS2322: Type 'null' is not assignable to type 'string'.

tests/baselines/reference/user/adonis-framework.log

+12-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Exit Code: 2
22
Standard output:
3+
../../../../built/local/lib.dom.d.ts(618,5): error TS2687: All declarations of 'url' must have identical modifiers.
4+
node_modules/@types/node/globals.d.ts(30,5): error TS2687: All declarations of 'url' must have identical modifiers.
5+
node_modules/@types/node/globals.d.ts(30,5): error TS2717: Subsequent property declarations must have the same type. Property 'url' must be of type 'string | undefined', but here has type 'string'.
36
node_modules/adonis-framework/lib/util.js(24,13): error TS2304: Cannot find name 'Mixed'.
47
node_modules/adonis-framework/providers/ConfigProvider.js(9,33): error TS2307: Cannot find module 'adonis-fold' or its corresponding type declarations.
58
node_modules/adonis-framework/providers/ConfigProvider.js(14,10): error TS2339: Property 'app' does not exist on type 'ConfigProvider'.
@@ -35,19 +38,19 @@ node_modules/adonis-framework/src/Config/index.js(39,15): error TS2304: Cannot f
3538
node_modules/adonis-framework/src/Config/index.js(58,15): error TS2304: Cannot find name 'Mixed'.
3639
node_modules/adonis-framework/src/Encryption/index.js(53,15): error TS2304: Cannot find name 'Mixed'.
3740
node_modules/adonis-framework/src/Encryption/index.js(71,34): error TS2769: No overload matches this call.
38-
Overload 1 of 4, '(data: ArrayBufferView, input_encoding: undefined, output_encoding: HexBase64BinaryEncoding): string', gave the following error.
41+
Overload 1 of 4, '(data: ArrayBufferView, input_encoding: undefined, output_encoding: BinaryToTextEncoding): string', gave the following error.
3942
Argument of type 'string' is not assignable to parameter of type 'undefined'.
40-
Overload 2 of 4, '(data: string, input_encoding: "utf8" | "ascii" | "binary" | undefined, output_encoding: HexBase64BinaryEncoding): string', gave the following error.
41-
Argument of type 'string' is not assignable to parameter of type '"utf8" | "ascii" | "binary" | undefined'.
43+
Overload 2 of 4, '(data: string, input_encoding: "utf8" | "ascii" | "utf-8" | "utf16le" | "ucs2" | "ucs-2" | "base64" | "latin1" | "binary" | "hex" | undefined, output_encoding: BinaryToTextEncoding): string', gave the following error.
44+
Argument of type 'string' is not assignable to parameter of type '"utf8" | "ascii" | "utf-8" | "utf16le" | "ucs2" | "ucs-2" | "base64" | "latin1" | "binary" | "hex" | undefined'.
4245
node_modules/adonis-framework/src/Encryption/index.js(77,27): error TS2322: Type 'string' is not assignable to type 'Buffer'.
4346
node_modules/adonis-framework/src/Encryption/index.js(77,50): error TS2345: Argument of type 'Buffer' is not assignable to parameter of type 'string'.
4447
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.
4548
node_modules/adonis-framework/src/Encryption/index.js(87,15): error TS2304: Cannot find name 'Mixed'.
46-
node_modules/adonis-framework/src/Encryption/index.js(101,62): error TS2769: No overload matches this call.
47-
Overload 1 of 4, '(data: ArrayBufferView, input_encoding: "base64" | "binary" | "hex" | undefined, output_encoding: Utf8AsciiBinaryEncoding): string', gave the following error.
48-
Argument of type 'string' is not assignable to parameter of type 'Utf8AsciiBinaryEncoding'.
49-
Overload 2 of 4, '(data: string, input_encoding: "base64" | "binary" | "hex" | undefined, output_encoding: Utf8AsciiBinaryEncoding): string', gave the following error.
50-
Argument of type 'string' is not assignable to parameter of type 'Utf8AsciiBinaryEncoding'.
49+
node_modules/adonis-framework/src/Encryption/index.js(101,21): error TS2769: No overload matches this call.
50+
Overload 1 of 4, '(data: ArrayBufferView, input_encoding: undefined, output_encoding: BufferEncoding): string', gave the following error.
51+
Argument of type '"base64"' is not assignable to parameter of type 'undefined'.
52+
Overload 2 of 4, '(data: string, input_encoding: "base64" | "hex" | undefined, output_encoding: BufferEncoding): string', gave the following error.
53+
Argument of type 'string' is not assignable to parameter of type 'BufferEncoding'.
5154
node_modules/adonis-framework/src/Encryption/index.js(102,5): error TS2322: Type 'string' is not assignable to type 'Buffer & string'.
5255
Type 'string' is not assignable to type 'Buffer'.
5356
node_modules/adonis-framework/src/Encryption/index.js(102,33): error TS2345: Argument of type 'string' is not assignable to parameter of type 'BufferEncoding'.
@@ -125,7 +128,7 @@ node_modules/adonis-framework/src/Request/index.js(466,15): error TS2304: Cannot
125128
node_modules/adonis-framework/src/Request/index.js(468,15): error TS2304: Cannot find name 'Mixed'.
126129
node_modules/adonis-framework/src/Request/index.js(480,14): error TS2304: Cannot find name 'Mixed'.
127130
node_modules/adonis-framework/src/Request/index.js(482,15): error TS2304: Cannot find name 'Mixed'.
128-
node_modules/adonis-framework/src/Request/index.js(499,17): error TS2551: Property '_params' does not exist on type 'Request'. Did you mean 'param'?
131+
node_modules/adonis-framework/src/Request/index.js(499,17): error TS2551: Property '_params' does not exist on type 'Request'. Did you mean 'params'?
129132
node_modules/adonis-framework/src/Request/index.js(523,15): error TS2304: Cannot find name 'Objecr'.
130133
node_modules/adonis-framework/src/Request/index.js(572,23): error TS8029: JSDoc '@param' tag has name 'pattern', but there is no parameter with that name. It would match 'arguments' if it had an array type.
131134
node_modules/adonis-framework/src/Request/index.js(600,17): error TS2554: Expected 2 arguments, but got 1.

tests/baselines/reference/user/assert.log

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Exit Code: 2
22
Standard output:
3+
../../../../built/local/lib.dom.d.ts(618,5): error TS2687: All declarations of 'url' must have identical modifiers.
4+
node_modules/@types/node/globals.d.ts(30,5): error TS2687: All declarations of 'url' must have identical modifiers.
5+
node_modules/@types/node/globals.d.ts(30,5): error TS2717: Subsequent property declarations must have the same type. Property 'url' must be of type 'string | undefined', but here has type 'string'.
36
node_modules/assert/test.js(25,5): error TS2367: This condition will always return 'false' since the types 'string | undefined' and 'boolean' have no overlap.
47
node_modules/assert/test.js(39,5): error TS2593: Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add `jest` or `mocha` to the types field in your tsconfig.
58
node_modules/assert/test.js(55,5): error TS2593: Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add `jest` or `mocha` to the types field in your tsconfig.

tests/baselines/reference/user/async.log

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Exit Code: 2
22
Standard output:
3+
../../../../built/local/lib.dom.d.ts(618,5): error TS2687: All declarations of 'url' must have identical modifiers.
4+
node_modules/@types/node/globals.d.ts(30,5): error TS2687: All declarations of 'url' must have identical modifiers.
5+
node_modules/@types/node/globals.d.ts(30,5): error TS2717: Subsequent property declarations must have the same type. Property 'url' must be of type 'string | undefined', but here has type 'string'.
36
node_modules/async/all.js(32,12): error TS2304: Cannot find name 'AsyncFunction'.
47
node_modules/async/all.js(49,20): error TS2695: Left side of comma operator is unused and has no side effects.
58
node_modules/async/all.js(49,46): error TS2695: Left side of comma operator is unused and has no side effects.

0 commit comments

Comments
 (0)