()
| 1275 | } |
| 1276 | |
| 1277 | export function getProfilingSettings(): ProfilingSettings { |
| 1278 | return { |
| 1279 | recordChangeDescriptions: |
| 1280 | sessionStorageGetItem(SESSION_STORAGE_RECORD_CHANGE_DESCRIPTIONS_KEY) === |
| 1281 | 'true', |
| 1282 | recordTimeline: |
| 1283 | sessionStorageGetItem(SESSION_STORAGE_RECORD_TIMELINE_KEY) === 'true', |
| 1284 | }; |
| 1285 | } |
| 1286 | |
| 1287 | export function onReloadAndProfile( |
| 1288 | recordChangeDescriptions: boolean, |
no test coverage detected