@@ -131,15 +131,15 @@ const assert = require('node:assert');
131131const { status, stderr, stdout } = spawnSync ( process . execPath , [
132132'--no-warnings' ,
133133'--experimental-transform-types' ,
134- fixtures . path ( 'typescript/ts/test-get-callsite .ts' ) ,
134+ fixtures . path ( 'typescript/ts/test-get-callsites .ts' ) ,
135135] ) ;
136136
137137const output = stdout . toString ( ) ;
138138assert . strictEqual ( stderr . toString ( ) , '' ) ;
139139assert . match ( output , / l i n e N u m b e r : 8 / ) ;
140140assert . match ( output , / c o l u m n : 1 8 / ) ;
141141assert . 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 / ) ;
143143assert . strictEqual ( status , 0 ) ;
144144}
145145
@@ -148,7 +148,7 @@ const assert = require('node:assert');
148148'--no-warnings' ,
149149'--experimental-transform-types' ,
150150'--no-enable-source-maps' ,
151- fixtures . path ( 'typescript/ts/test-get-callsite .ts' ) ,
151+ fixtures . path ( 'typescript/ts/test-get-callsites .ts' ) ,
152152] ) ;
153153
154154const output = stdout . toString ( ) ;
@@ -157,7 +157,7 @@ const assert = require('node:assert');
157157assert . match ( output , / l i n e N u m b e r : 2 / ) ;
158158assert . match ( output , / c o l u m n : 1 8 / ) ;
159159assert . 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 / ) ;
161161assert . strictEqual ( status , 0 ) ;
162162}
163163
@@ -166,15 +166,15 @@ const assert = require('node:assert');
166166const { status, stderr, stdout } = spawnSync ( process . execPath , [
167167'--no-warnings' ,
168168'--experimental-transform-types' ,
169- fixtures . path ( 'typescript/ts/test-get-callsite -explicit.ts' ) ,
169+ fixtures . path ( 'typescript/ts/test-get-callsites -explicit.ts' ) ,
170170] ) ;
171171
172172const output = stdout . toString ( ) ;
173173assert . strictEqual ( stderr . toString ( ) , '' ) ;
174174assert . match ( output , / l i n e N u m b e r : 2 / ) ;
175175assert . match ( output , / c o l u m n : 1 8 / ) ;
176176assert . 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 / ) ;
178178assert . strictEqual ( status , 0 ) ;
179179}
180180
0 commit comments