frequi_origin/cypress/e2e/logs.cy.ts
2024-01-10 06:36:27 +01:00

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');
});
});