@@ -131,15 +131,15 @@ const assert = require('node:assert');
131
131
const { status, stderr, stdout } = spawnSync ( process . execPath , [
132
132
'--no-warnings' ,
133
133
'--experimental-transform-types' ,
134
- fixtures . path ( 'typescript/ts/test-get-callsite .ts' ) ,
134
+ fixtures . path ( 'typescript/ts/test-get-callsites .ts' ) ,
135
135
] ) ;
136
136
137
137
const output = stdout . toString ( ) ;
138
138
assert . strictEqual ( stderr . toString ( ) , '' ) ;
139
139
assert . match ( output , / l i n e N u m b e r : 8 / ) ;
140
140
assert . match ( output , / c o l u m n : 1 8 / ) ;
141
141
assert . match ( output , / c o l u m n N u m b e r : 1 8 / ) ;
142
- assert . match ( output , / t e s t - g e t - c a l l s i t e \. t s / ) ;
142
+ assert . match ( output , / t e s t - g e t - c a l l s i t e s \. t s / ) ;
143
143
assert . strictEqual ( status , 0 ) ;
144
144
}
145
145
@@ -148,7 +148,7 @@ const assert = require('node:assert');
148
148
'--no-warnings' ,
149
149
'--experimental-transform-types' ,
150
150
'--no-enable-source-maps' ,
151
- fixtures . path ( 'typescript/ts/test-get-callsite .ts' ) ,
151
+ fixtures . path ( 'typescript/ts/test-get-callsites .ts' ) ,
152
152
] ) ;
153
153
154
154
const output = stdout . toString ( ) ;
@@ -157,7 +157,7 @@ const assert = require('node:assert');
157
157
assert . match ( output , / l i n e N u m b e r : 2 / ) ;
158
158
assert . match ( output , / c o l u m n : 1 8 / ) ;
159
159
assert . match ( output , / c o l u m n N u m b e r : 1 8 / ) ;
160
- assert . match ( output , / t e s t - g e t - c a l l s i t e \. t s / ) ;
160
+ assert . match ( output , / t e s t - g e t - c a l l s i t e s \. t s / ) ;
161
161
assert . strictEqual ( status , 0 ) ;
162
162
}
163
163
@@ -166,15 +166,15 @@ const assert = require('node:assert');
166
166
const { status, stderr, stdout } = spawnSync ( process . execPath , [
167
167
'--no-warnings' ,
168
168
'--experimental-transform-types' ,
169
- fixtures . path ( 'typescript/ts/test-get-callsite -explicit.ts' ) ,
169
+ fixtures . path ( 'typescript/ts/test-get-callsites -explicit.ts' ) ,
170
170
] ) ;
171
171
172
172
const output = stdout . toString ( ) ;
173
173
assert . strictEqual ( stderr . toString ( ) , '' ) ;
174
174
assert . match ( output , / l i n e N u m b e r : 2 / ) ;
175
175
assert . match ( output , / c o l u m n : 1 8 / ) ;
176
176
assert . match ( output , / c o l u m n N u m b e r : 1 8 / ) ;
177
- assert . match ( output , / t e s t - g e t - c a l l s i t e - e x p l i c i t \. t s / ) ;
177
+ assert . match ( output , / t e s t - g e t - c a l l s i t e s - e x p l i c i t \. t s / ) ;
178
178
assert . strictEqual ( status , 0 ) ;
179
179
}
180
180
0 commit comments