@@ -110,36 +110,36 @@ test('expect fail eval TypeScript ESM syntax with input-type commonjs-typescript
110
110
strictEqual ( result . code , 1 ) ;
111
111
} ) ;
112
112
113
- test ( 'check syntax error is thrown when passing invalid syntax' , async ( ) => {
113
+ test ( 'check syntax error is thrown when passing unsupported syntax' , async ( ) => {
114
114
const result = await spawnPromisified ( process . execPath , [
115
115
'--experimental-strip-types' ,
116
116
'--eval' ,
117
117
'enum Foo { A, B, C }' ] ) ;
118
118
strictEqual ( result . stdout , '' ) ;
119
119
match ( result . stderr , / S y n t a x E r r o r / ) ;
120
- doesNotMatch ( result . stderr , / E R R _ I N V A L I D _ T Y P E S C R I P T _ S Y N T A X / ) ;
120
+ doesNotMatch ( result . stderr , / E R R _ U N S U P P O R T E D _ T Y P E S C R I P T _ S Y N T A X / ) ;
121
121
strictEqual ( result . code , 1 ) ;
122
122
} ) ;
123
123
124
- test ( 'check syntax error is thrown when passing invalid syntax with --input-type=module-typescript' , async ( ) => {
124
+ test ( 'check syntax error is thrown when passing unsupported syntax with --input-type=module-typescript' , async ( ) => {
125
125
const result = await spawnPromisified ( process . execPath , [
126
126
'--experimental-strip-types' ,
127
127
'--input-type=module-typescript' ,
128
128
'--eval' ,
129
129
'enum Foo { A, B, C }' ] ) ;
130
130
strictEqual ( result . stdout , '' ) ;
131
- match ( result . stderr , / E R R _ I N V A L I D _ T Y P E S C R I P T _ S Y N T A X / ) ;
131
+ match ( result . stderr , / E R R _ U N S U P P O R T E D _ T Y P E S C R I P T _ S Y N T A X / ) ;
132
132
strictEqual ( result . code , 1 ) ;
133
133
} ) ;
134
134
135
- test ( 'check syntax error is thrown when passing invalid syntax with --input-type=commonjs-typescript' , async ( ) => {
135
+ test ( 'check syntax error is thrown when passing unsupported syntax with --input-type=commonjs-typescript' , async ( ) => {
136
136
const result = await spawnPromisified ( process . execPath , [
137
137
'--experimental-strip-types' ,
138
138
'--input-type=commonjs-typescript' ,
139
139
'--eval' ,
140
140
'enum Foo { A, B, C }' ] ) ;
141
141
strictEqual ( result . stdout , '' ) ;
142
- match ( result . stderr , / E R R _ I N V A L I D _ T Y P E S C R I P T _ S Y N T A X / ) ;
142
+ match ( result . stderr , / E R R _ U N S U P P O R T E D _ T Y P E S C R I P T _ S Y N T A X / ) ;
143
143
strictEqual ( result . code , 1 ) ;
144
144
} ) ;
145
145
@@ -152,7 +152,7 @@ test('should not parse TypeScript with --type-module=commonjs', async () => {
152
152
153
153
strictEqual ( result . stdout , '' ) ;
154
154
match ( result . stderr , / S y n t a x E r r o r / ) ;
155
- doesNotMatch ( result . stderr , / E R R _ I N V A L I D _ T Y P E S C R I P T _ S Y N T A X / ) ;
155
+ doesNotMatch ( result . stderr , / E R R _ U N S U P P O R T E D _ T Y P E S C R I P T _ S Y N T A X / ) ;
156
156
strictEqual ( result . code , 1 ) ;
157
157
} ) ;
158
158
@@ -165,7 +165,7 @@ test('should not parse TypeScript with --type-module=module', async () => {
165
165
166
166
strictEqual ( result . stdout , '' ) ;
167
167
match ( result . stderr , / S y n t a x E r r o r / ) ;
168
- doesNotMatch ( result . stderr , / E R R _ I N V A L I D _ T Y P E S C R I P T _ S Y N T A X / ) ;
168
+ doesNotMatch ( result . stderr , / E R R _ U N S U P P O R T E D _ T Y P E S C R I P T _ S Y N T A X / ) ;
169
169
strictEqual ( result . code , 1 ) ;
170
170
} ) ;
171
171
@@ -241,3 +241,25 @@ test('typescript CJS code is throwing a syntax error at runtime', async () => {
241
241
strictEqual ( result . stdout , '' ) ;
242
242
strictEqual ( result . code , 1 ) ;
243
243
} ) ;
244
+
245
+ test ( 'check syntax error is thrown when passing invalid syntax with --input-type=commonjs-typescript' , async ( ) => {
246
+ const result = await spawnPromisified ( process . execPath , [
247
+ '--experimental-strip-types' ,
248
+ '--input-type=commonjs-typescript' ,
249
+ '--eval' ,
250
+ 'function foo(){ await Promise.resolve(1); }' ] ) ;
251
+ strictEqual ( result . stdout , '' ) ;
252
+ match ( result . stderr , / E R R _ I N V A L I D _ T Y P E S C R I P T _ S Y N T A X / ) ;
253
+ strictEqual ( result . code , 1 ) ;
254
+ } ) ;
255
+
256
+ test ( 'check syntax error is thrown when passing invalid syntax with --input-type=module-typescript' , async ( ) => {
257
+ const result = await spawnPromisified ( process . execPath , [
258
+ '--experimental-strip-types' ,
259
+ '--input-type=module-typescript' ,
260
+ '--eval' ,
261
+ 'function foo(){ await Promise.resolve(1); }' ] ) ;
262
+ strictEqual ( result . stdout , '' ) ;
263
+ match ( result . stderr , / E R R _ I N V A L I D _ T Y P E S C R I P T _ S Y N T A X / ) ;
264
+ strictEqual ( result . code , 1 ) ;
265
+ } ) ;
0 commit comments