1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`initializing when pending breakpoints exist in prefs syncs pending breakpoints 1`] = `
Object {
"http://localhost:8000/examples/bar.js:5:2": Object {
"astLocation": Object {
"index": 0,
"name": undefined,
"offset": Object {
"line": 5,
},
},
"disabled": false,
"generatedLocation": Object {
"column": 2,
"line": 5,
"source": Object {
"id": "",
"url": "http://localhost:8000/examples/bar.js",
},
"sourceActor": null,
"sourceActorId": undefined,
"sourceId": "",
"sourceUrl": "http://localhost:8000/examples/bar.js",
},
"location": Object {
"column": 2,
"line": 5,
"source": Object {
"id": "",
"url": "http://localhost:8000/examples/bar.js",
},
"sourceActor": null,
"sourceActorId": undefined,
"sourceId": "",
"sourceUrl": "http://localhost:8000/examples/bar.js",
},
"options": Object {
"condition": null,
"hidden": false,
},
},
}
`;
|