@@ -131,15 +131,15 @@ const assert = require('node:assert');
131131 const { 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
137137 const output = stdout . toString ( ) ;
138138 assert . strictEqual ( stderr . toString ( ) , '' ) ;
139139 assert . match ( output , / l i n e N u m b e r : 8 / ) ;
140140 assert . match ( output , / c o l u m n : 1 8 / ) ;
141141 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 / ) ;
143143 assert . 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
154154 const output = stdout . toString ( ) ;
@@ -157,7 +157,7 @@ const assert = require('node:assert');
157157 assert . match ( output , / l i n e N u m b e r : 2 / ) ;
158158 assert . match ( output , / c o l u m n : 1 8 / ) ;
159159 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 / ) ;
161161 assert . strictEqual ( status , 0 ) ;
162162}
163163
@@ -166,15 +166,15 @@ const assert = require('node:assert');
166166 const { 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
172172 const output = stdout . toString ( ) ;
173173 assert . strictEqual ( stderr . toString ( ) , '' ) ;
174174 assert . match ( output , / l i n e N u m b e r : 2 / ) ;
175175 assert . match ( output , / c o l u m n : 1 8 / ) ;
176176 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 / ) ;
178178 assert . strictEqual ( status , 0 ) ;
179179}
180180
0 commit comments