@@ -155,11 +155,11 @@ function nextdir() {
155
155
require . resolve ( '../fixtures/source-map/uglify-throw.js' )
156
156
] ) ;
157
157
assert . strictEqual (
158
- output . stderr . toString ( ) . match ( / - > .* u g l i f y - t h r o w - o r i g i n a l \. j s : 5 : 9 / ) ,
158
+ output . stderr . toString ( ) . match ( / .* u g l i f y - t h r o w - o r i g i n a l \. j s : 5 : 9 / ) ,
159
159
null
160
160
) ;
161
161
assert . strictEqual (
162
- output . stderr . toString ( ) . match ( / - > .* u g l i f y - t h r o w - o r i g i n a l \. j s : 9 : 3 / ) ,
162
+ output . stderr . toString ( ) . match ( / .* u g l i f y - t h r o w - o r i g i n a l \. j s : 9 : 3 / ) ,
163
163
null
164
164
) ;
165
165
}
@@ -172,11 +172,11 @@ function nextdir() {
172
172
] ) ;
173
173
assert . match (
174
174
output . stderr . toString ( ) ,
175
- / - > .* u g l i f y - t h r o w - o r i g i n a l \. j s : 5 : 9 /
175
+ / .* u g l i f y - t h r o w - o r i g i n a l \. j s : 5 : 9 /
176
176
) ;
177
177
assert . match (
178
178
output . stderr . toString ( ) ,
179
- / - > .* u g l i f y - t h r o w - o r i g i n a l \. j s : 9 : 3 /
179
+ / .* u g l i f y - t h r o w - o r i g i n a l \. j s : 9 : 3 /
180
180
) ;
181
181
assert . match ( output . stderr . toString ( ) , / a t H e l l o / ) ;
182
182
}
@@ -187,8 +187,8 @@ function nextdir() {
187
187
'--enable-source-maps' ,
188
188
require . resolve ( '../fixtures/source-map/typescript-throw.js' )
189
189
] ) ;
190
- assert . ok ( output . stderr . toString ( ) . match ( / - > .* t y p e s c r i p t - t h r o w \. t s : 1 8 : 1 1 / ) ) ;
191
- assert . ok ( output . stderr . toString ( ) . match ( / - > .* t y p e s c r i p t - t h r o w \. t s : 2 4 : 1 / ) ) ;
190
+ assert . ok ( output . stderr . toString ( ) . match ( / .* t y p e s c r i p t - t h r o w \. t s : 1 8 : 1 1 / ) ) ;
191
+ assert . ok ( output . stderr . toString ( ) . match ( / .* t y p e s c r i p t - t h r o w \. t s : 2 4 : 1 / ) ) ;
192
192
}
193
193
194
194
// Applies source-maps generated by babel to stack trace.
@@ -198,7 +198,7 @@ function nextdir() {
198
198
require . resolve ( '../fixtures/source-map/babel-throw.js' )
199
199
] ) ;
200
200
assert . ok (
201
- output . stderr . toString ( ) . match ( / - > .* b a b e l - t h r o w - o r i g i n a l \. j s : 1 8 : 3 1 / )
201
+ output . stderr . toString ( ) . match ( / .* b a b e l - t h r o w - o r i g i n a l \. j s : 1 8 : 3 1 / )
202
202
) ;
203
203
}
204
204
@@ -209,10 +209,10 @@ function nextdir() {
209
209
require . resolve ( '../fixtures/source-map/istanbul-throw.js' )
210
210
] ) ;
211
211
assert . ok (
212
- output . stderr . toString ( ) . match ( / - > .* i s t a n b u l - t h r o w - o r i g i n a l \. j s : 5 : 9 / )
212
+ output . stderr . toString ( ) . match ( / .* i s t a n b u l - t h r o w - o r i g i n a l \. j s : 5 : 9 / )
213
213
) ;
214
214
assert . ok (
215
- output . stderr . toString ( ) . match ( / - > .* i s t a n b u l - t h r o w - o r i g i n a l \. j s : 9 : 3 / )
215
+ output . stderr . toString ( ) . match ( / .* i s t a n b u l - t h r o w - o r i g i n a l \. j s : 9 : 3 / )
216
216
) ;
217
217
}
218
218
@@ -223,7 +223,7 @@ function nextdir() {
223
223
require . resolve ( '../fixtures/source-map/babel-esm.mjs' )
224
224
] ) ;
225
225
assert . ok (
226
- output . stderr . toString ( ) . match ( / - > .* b a b e l - e s m - o r i g i n a l \. m j s : 9 : 2 9 / )
226
+ output . stderr . toString ( ) . match ( / .* b a b e l - e s m - o r i g i n a l \. m j s : 9 : 2 9 / )
227
227
) ;
228
228
}
229
229
0 commit comments