Files
dbgate/e2e-tests/cypress/e2e/oauth.cy.js
SPRINX0\prochazka 01f3f44369 oauth test WIP
2025-01-08 15:05:14 +01:00

15 lines
378 B
JavaScript

describe('OAuth', () => {
it('OAuth login', () => {
cy.visit('http://localhost:3000');
// login on DEX
cy.get('#login').clear().type('test@example.com');
cy.get('#password').clear().type('test');
cy.get('#submit-login').click();
// check DbGate connection
cy.contains('MySql-connection').click();
cy.contains('performance_schema');
});
});