mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
19 lines
492 B
TypeScript
19 lines
492 B
TypeScript
import { setLoginInfo, defaultMocks } from './helpers';
|
|
|
|
describe('Logs', () => {
|
|
it('Displays and reloads logs', () => {
|
|
///
|
|
defaultMocks();
|
|
cy.intercept('GET', '**/api/v1/logs', { fixture: 'logs.json' }).as('Logs');
|
|
setLoginInfo();
|
|
|
|
cy.visit('/logs');
|
|
cy.wait('@Ping');
|
|
cy.wait('@ShowConf');
|
|
cy.wait('@Logs');
|
|
cy.get('span').should('contain.text', 'Checking exchange...');
|
|
cy.get('button[id=refresh-logs]').click();
|
|
cy.wait('@Logs');
|
|
});
|
|
});
|