Skip to content

Commit e4f133c

Browse files
marco-ippolitoaduh95
authored andcommitted
test: add ts eval snapshots
PR-URL: #56358 Backport-PR-URL: #56912 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Jacob Smith <[email protected]>
1 parent 96ec862 commit e4f133c

6 files changed

+77
-99
lines changed

test/fixtures/eval/eval_messages.snapshot

-7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@ with(this){__filename}
55

66
SyntaxError: Strict mode code may not include a with statement
77

8-
9-
10-
11-
12-
13-
14-
158
Node.js *
169
42
1710
42

test/fixtures/eval/eval_typescript.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
'use strict';
2+
3+
require('../../common');
4+
5+
const spawnSync = require('child_process').spawnSync;
6+
7+
const queue = [
8+
'enum Foo{};',
9+
'throw new SyntaxError("hello")',
10+
'const foo;',
11+
'let x: number = 100;x;',
12+
'const foo: string = 10;',
13+
'function foo(){};foo<Number>(1);',
14+
'interface Foo{};const foo;',
15+
'function foo(){ await Promise.resolve(1)};',
16+
];
17+
18+
for (const cmd of queue) {
19+
const args = ['--disable-warning=ExperimentalWarning','--experimental-strip-types', '-p', cmd];
20+
const result = spawnSync(process.execPath, args, {
21+
stdio: 'pipe'
22+
});
23+
process.stdout.write(result.stdout);
24+
process.stdout.write(result.stderr);
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
[eval]:1
2+
enum Foo{};
3+
^^^^
4+
x TypeScript enum is not supported in strip-only mode
5+
,----
6+
1 | enum Foo{};
7+
: ^^^^^^^^^^
8+
`----
9+
10+
SyntaxError: Unexpected reserved word
11+
12+
Node.js *
13+
[eval]:1
14+
throw new SyntaxError("hello")
15+
^
16+
17+
SyntaxError: hello
18+
19+
Node.js *
20+
[eval]:1
21+
const foo;
22+
^^^
23+
24+
SyntaxError: Missing initializer in const declaration
25+
26+
Node.js *
27+
100
28+
undefined
29+
false
30+
[eval]:1
31+
;const foo;
32+
^^^
33+
34+
SyntaxError: Missing initializer in const declaration
35+
36+
Node.js *
37+
[eval]:1
38+
function foo(){ await Promise.resolve(1)};
39+
^^^^^
40+
x await isn't allowed in non-async function
41+
,----
42+
1 | function foo(){ await Promise.resolve(1)};
43+
: ^^^^^^^
44+
`----
45+
46+
SyntaxError: await is only valid in async functions and the top level bodies of modules
47+
48+
Node.js *

test/fixtures/eval/stdin_messages.snapshot

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ with(this){__filename}
88
: ^^^^
99
`----
1010

11-
1211
SyntaxError: Strict mode code may not include a with statement
1312

1413
Node.js *

test/fixtures/eval/stdin_typescript.snapshot

-88
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,8 @@ enum Foo{};
77
: ^^^^^^^^^^
88
`----
99

10-
1110
SyntaxError: Unexpected reserved word
1211

13-
14-
15-
16-
17-
18-
19-
20-
2112
Node.js *
2213
[stdin]:1
2314
enum Foo{};
@@ -28,81 +19,36 @@ enum Foo{};
2819
: ^^^^^^^^^^
2920
`----
3021

31-
3222
SyntaxError: Unexpected reserved word
3323

34-
35-
36-
37-
38-
39-
40-
41-
4224
Node.js *
4325
[stdin]:1
4426
throw new SyntaxError("hello")
4527
^
4628

4729
SyntaxError: hello
4830

49-
50-
51-
52-
53-
54-
55-
56-
57-
58-
5931
Node.js *
6032
[stdin]:1
6133
throw new SyntaxError("hello")
6234
^
6335

6436
SyntaxError: hello
6537

66-
67-
68-
69-
70-
71-
72-
73-
74-
75-
7638
Node.js *
7739
[stdin]:1
7840
const foo;
7941
^^^
8042

8143
SyntaxError: Missing initializer in const declaration
8244

83-
84-
85-
86-
87-
88-
89-
90-
9145
Node.js *
9246
[stdin]:1
9347
const foo;
9448
^^^
9549

9650
SyntaxError: Missing initializer in const declaration
9751

98-
99-
100-
101-
102-
103-
104-
105-
10652
Node.js *
10753
100
10854
100
@@ -116,29 +62,13 @@ false
11662

11763
SyntaxError: Missing initializer in const declaration
11864

119-
120-
121-
122-
123-
124-
125-
126-
12765
Node.js *
12866
[stdin]:1
12967
;const foo;
13068
^^^
13169

13270
SyntaxError: Missing initializer in const declaration
13371

134-
135-
136-
137-
138-
139-
140-
141-
14272
Node.js *
14373
[stdin]:1
14474
function foo(){ await Promise.resolve(1)};
@@ -149,17 +79,8 @@ function foo(){ await Promise.resolve(1)};
14979
: ^^^^^^^
15080
`----
15181

152-
15382
SyntaxError: await is only valid in async functions and the top level bodies of modules
15483

155-
156-
157-
158-
159-
160-
161-
162-
16384
Node.js *
16485
[stdin]:1
16586
function foo(){ await Promise.resolve(1)};
@@ -170,16 +91,7 @@ function foo(){ await Promise.resolve(1)};
17091
: ^^^^^^^
17192
`----
17293

173-
17494
SyntaxError: await is only valid in async functions and the top level bodies of modules
17595

176-
177-
178-
179-
180-
181-
182-
183-
18496
Node.js *
18597
done

test/parallel/test-node-output-eval.mjs

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ describe('eval output', { concurrency: true }, () => {
1010
}
1111

1212
const defaultTransform = snapshot.transform(
13-
removeStackTraces,
14-
filterEmptyLines,
1513
normalize,
1614
snapshot.replaceWindowsLineEndings,
1715
snapshot.replaceWindowsPaths,
18-
snapshot.replaceNodeVersion
16+
snapshot.replaceNodeVersion,
17+
removeStackTraces,
18+
filterEmptyLines,
1919
);
2020

2121
function removeStackTraces(output) {
@@ -30,6 +30,7 @@ describe('eval output', { concurrency: true }, () => {
3030
{ name: 'eval/eval_messages.js' },
3131
{ name: 'eval/stdin_messages.js' },
3232
{ name: 'eval/stdin_typescript.js' },
33+
{ name: 'eval/eval_typescript.js' },
3334
];
3435

3536
for (const { name } of tests) {

0 commit comments

Comments
 (0)