12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`Frame renderContext() should render context lines 1`] = `
- Array [
- <ContextLine
- className="css-x7wq2i-FrameContext"
- isActive={false}
- line={
- Array [
- 211,
- " # Mark the crashed thread and add its stacktrace to the exception",
- ]
- }
- >
- <li
- className="css-x7wq2i-FrameContext expandable"
- key="211"
- >
- <span
- className="ws"
- >
-
- </span>
- <span
- className="contextline"
- >
- # Mark the crashed thread and add its stacktrace to the exception
- </span>
- </li>
- </ContextLine>,
- <ContextLine
- className="css-x7wq2i-FrameContext"
- isActive={false}
- line={
- Array [
- 212,
- " crashed_thread = data['threads'][state.requesting_thread]",
- ]
- }
- >
- <li
- className="css-x7wq2i-FrameContext expandable"
- key="212"
- >
- <span
- className="ws"
- >
-
- </span>
- <span
- className="contextline"
- >
- crashed_thread = data['threads'][state.requesting_thread]
- </span>
- </li>
- </ContextLine>,
- <ContextLine
- className="css-x7wq2i-FrameContext"
- isActive={false}
- line={
- Array [
- 213,
- " crashed_thread['crashed'] = True",
- ]
- }
- >
- <li
- className="css-x7wq2i-FrameContext expandable"
- key="213"
- >
- <span
- className="ws"
- >
-
- </span>
- <span
- className="contextline"
- >
- crashed_thread['crashed'] = True
- </span>
- </li>
- </ContextLine>,
- ]
- `;
- exports[`Frame renderOriginalSourceInfo() should render the source map information as a HTML string 1`] = `
- <FrameDefaultTitleOriginalSourceInfo
- map="vendor.js.map"
- mapUrl="https://beta.getsentry.com/_static/sentry/dist/vendor.js.map"
- />
- `;
|