1// Jest Snapshot v1, https://goo.gl/fbAQLP
2
3exports[`visible column breakpoints doesnt show breakpoints to the right 1`] = `
4Array [
5  Object {
6    "breakpoint": Object {
7      "astLocation": null,
8      "disabled": false,
9      "generatedLocation": Object {
10        "column": 1,
11        "line": 1,
12        "sourceId": "foo",
13      },
14      "id": "breakpoint",
15      "location": Object {
16        "column": 1,
17        "line": 1,
18        "sourceId": "foo",
19      },
20      "options": Object {},
21      "originalText": "text",
22      "text": "text",
23    },
24    "location": Object {
25      "column": 1,
26      "line": 1,
27      "sourceId": "foo",
28    },
29  },
30]
31`;
32
33exports[`visible column breakpoints ignores single breakpoints 1`] = `
34Array [
35  Object {
36    "breakpoint": Object {
37      "astLocation": null,
38      "disabled": false,
39      "generatedLocation": Object {
40        "column": 1,
41        "line": 1,
42        "sourceId": "foo",
43      },
44      "id": "breakpoint",
45      "location": Object {
46        "column": 1,
47        "line": 1,
48        "sourceId": "foo",
49      },
50      "options": Object {},
51      "originalText": "text",
52      "text": "text",
53    },
54    "location": Object {
55      "column": 1,
56      "line": 1,
57      "sourceId": "foo",
58    },
59  },
60  Object {
61    "breakpoint": undefined,
62    "location": Object {
63      "column": 3,
64      "line": 1,
65      "sourceId": "foo",
66    },
67  },
68]
69`;
70
71exports[`visible column breakpoints only shows visible breakpoints 1`] = `
72Array [
73  Object {
74    "breakpoint": Object {
75      "astLocation": null,
76      "disabled": false,
77      "generatedLocation": Object {
78        "column": 1,
79        "line": 1,
80        "sourceId": "foo",
81      },
82      "id": "breakpoint",
83      "location": Object {
84        "column": 1,
85        "line": 1,
86        "sourceId": "foo",
87      },
88      "options": Object {},
89      "originalText": "text",
90      "text": "text",
91    },
92    "location": Object {
93      "column": 1,
94      "line": 1,
95      "sourceId": "foo",
96    },
97  },
98  Object {
99    "breakpoint": undefined,
100    "location": Object {
101      "column": 3,
102      "line": 1,
103      "sourceId": "foo",
104    },
105  },
106]
107`;
108
109exports[`visible column breakpoints simple 1`] = `
110Array [
111  Object {
112    "breakpoint": Object {
113      "astLocation": null,
114      "disabled": false,
115      "generatedLocation": Object {
116        "column": 1,
117        "line": 1,
118        "sourceId": "foo",
119      },
120      "id": "breakpoint",
121      "location": Object {
122        "column": 1,
123        "line": 1,
124        "sourceId": "foo",
125      },
126      "options": Object {},
127      "originalText": "text",
128      "text": "text",
129    },
130    "location": Object {
131      "column": 1,
132      "line": 1,
133      "sourceId": "foo",
134    },
135  },
136  Object {
137    "breakpoint": undefined,
138    "location": Object {
139      "column": 5,
140      "line": 1,
141      "sourceId": "foo",
142    },
143  },
144]
145`;
146