@@ -1302,29 +1302,23 @@ def assert_abs_path(abs_path):
1302
1302
assert frame_list [2 ].function == "App"
1303
1303
assert frame_list [2 ].lineno == 2
1304
1304
1305
- # TODO: 1:1014 in the minified source file is _unmapped_.
1305
+ # 1:1014 in the minified source file is _unmapped_.
1306
1306
# There are no tokens in the sourcemap for line 1.
1307
- # Previous versions of JS symbolication erroneously returned
1308
- # wrong values here. This needs to be enabled once Symbolicator
1309
- # is updated.
1310
- # assert frame_list[3].abs_path == "app:///dist.bundle.js"
1311
- # assert frame_list[3].function == "Object.<anonymous>"
1312
- # assert frame_list[3].lineno == 1
1313
- # assert frame_list[3].colno == 1014
1307
+ assert frame_list [3 ].abs_path == "app:///dist.bundle.js"
1308
+ assert frame_list [3 ].function == "Object.<anonymous>"
1309
+ assert frame_list [3 ].lineno == 1
1310
+ assert frame_list [3 ].colno == 1014
1314
1311
1315
1312
assert_abs_path (frame_list [4 ].abs_path )
1316
1313
assert frame_list [4 ].function == "__webpack_require__"
1317
1314
assert frame_list [4 ].lineno == 19
1318
1315
1319
- # TODO: 18:63 in the minified source file is _unmapped_.
1316
+ # 18:63 in the minified source file is _unmapped_.
1320
1317
# There are no tokens in the sourcemap for line 18.
1321
- # Previous versions of JS symbolication erroneously returned
1322
- # wrong values here. This needs to be enabled once Symbolicator
1323
- # is updated.
1324
- # assert frame_list[5].abs_path == "app:///dist.bundle.js"
1325
- # assert frame_list[5].function == "Object.<anonymous>"
1326
- # assert frame_list[5].lineno == 18
1327
- # assert frame_list[5].colno == 63
1318
+ assert frame_list [5 ].abs_path == "app:///dist.bundle.js"
1319
+ assert frame_list [5 ].function == "<unknown>"
1320
+ assert frame_list [5 ].lineno == 18
1321
+ assert frame_list [5 ].colno == 63
1328
1322
1329
1323
@responses .activate
1330
1324
def test_no_fetch_from_http (self ) -> None :
0 commit comments