mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
29 lines
803 B
TypeScript
29 lines
803 B
TypeScript
|
export function setLoginInfo() {
|
||
|
localStorage.setItem(
|
||
|
'ftAuthLoginInfo',
|
||
|
JSON.stringify({
|
||
|
'ftbot.0': {
|
||
|
botName: 'TestBot',
|
||
|
apiUrl: 'http://localhost:3000',
|
||
|
accessToken: 'access_token_tesst',
|
||
|
refreshToken: 'refresh_test',
|
||
|
autoRefresh: true,
|
||
|
},
|
||
|
}),
|
||
|
);
|
||
|
localStorage.setItem('ftSelectedBot', 'ftbot.0');
|
||
|
}
|
||
|
|
||
|
export function defaultMocks() {
|
||
|
cy.intercept('**/api/v1/**', {
|
||
|
statusCode: 200,
|
||
|
// eslint-disable-next-line @typescript-eslint/camelcase
|
||
|
headers: { 'access-control-allow-origin': '*' },
|
||
|
}).as('RandomAPICall');
|
||
|
|
||
|
cy.intercept('GET', '**/api/v1/ping', { fixture: 'ping.json' }).as('Ping');
|
||
|
cy.intercept('GET', '**/api/v1/show_config', {
|
||
|
fixture: 'backtest/show_config_backtest.json',
|
||
|
}).as('ShowConf');
|
||
|
}
|