forked from verdnatura/salix-front
Merge branch 'dev' into 7039-country-country
This commit is contained in:
commit
755730a030
|
@ -38,6 +38,15 @@ Cypress.Commands.add('login', (user) => {
|
||||||
},
|
},
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
window.localStorage.setItem('token', response.body.token);
|
window.localStorage.setItem('token', response.body.token);
|
||||||
|
cy.request({
|
||||||
|
method: 'GET',
|
||||||
|
url: '/api/VnUsers/ShareToken',
|
||||||
|
headers: {
|
||||||
|
Authorization: window.localStorage.getItem('token'),
|
||||||
|
},
|
||||||
|
}).then(({ body }) => {
|
||||||
|
window.localStorage.setItem('tokenMultimedia', body.multimediaToken.id);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue