2022-04-22 09:49:26 -04:00
|
|
|
const MOCK_DELAY = 1000
|
|
|
|
|
|
|
|
export function defaultSetupMocks(fetchMock) {
|
|
|
|
fetchMock.post(/\/user\/settings/, 200, {
|
|
|
|
delay: MOCK_DELAY,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
export function setDefaultMeta() {
|
|
|
|
window.metaAttributesCache = window.metaAttributesCache || new Map()
|
2022-04-25 07:05:15 -04:00
|
|
|
window.metaAttributesCache.set('ol-user', {
|
2022-04-27 12:13:42 -04:00
|
|
|
...window.metaAttributesCache.get('ol-user'),
|
2022-04-25 07:05:15 -04:00
|
|
|
email: 'sherlock@holmes.co.uk',
|
|
|
|
first_name: 'Sherlock',
|
|
|
|
last_name: 'Holmes',
|
|
|
|
})
|
2022-04-22 09:49:26 -04:00
|
|
|
window.metaAttributesCache.set('ol-ExposedSettings', {
|
2022-04-27 12:13:42 -04:00
|
|
|
...window.metaAttributesCache.get('ol-ExposedSettings'),
|
2022-04-22 09:49:26 -04:00
|
|
|
hasAffiliationsFeature: false,
|
|
|
|
})
|
|
|
|
window.metaAttributesCache.set('ol-isExternalAuthenticationSystemUsed', false)
|
|
|
|
window.metaAttributesCache.set('ol-shouldAllowEditingDetails', true)
|
|
|
|
}
|