oauth test WIP

This commit is contained in:
SPRINX0\prochazka
2025-01-08 15:05:14 +01:00
parent a3e8d64d4e
commit 01f3f44369
10 changed files with 83 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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');
});
});