| 18 | export const envelopeItemPayload = 1; |
| 19 | |
| 20 | export const getMockSession = (): Session => ({ |
| 21 | sid: 'sid_test_value', |
| 22 | init: true, |
| 23 | timestamp: -1, |
| 24 | started: -1, |
| 25 | status: 'ok', |
| 26 | errors: -1, |
| 27 | ignoreDuration: false, |
| 28 | release: 'release_test_value', |
| 29 | toJSON: () => ({ |
| 30 | init: true, |
| 31 | sid: 'sid_test_value', |
| 32 | timestamp: 'timestamp_test_value', |
| 33 | started: 'started_test_value', |
| 34 | status: 'ok', |
| 35 | errors: -1, |
| 36 | }), |
| 37 | }); |
| 38 | |
| 39 | export const getMockUserFeedback = (): UserFeedback => ({ |
| 40 | comments: 'comments_test_value', |