mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 03:16:01 +00:00
15 lines
378 B
JavaScript
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');
|
|
});
|
|
});
|