mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 04:56:00 +00:00
13 lines
330 B
JavaScript
13 lines
330 B
JavaScript
describe('Run as portal', () => {
|
|
it('successfully loads', () => {
|
|
cy.visit('http://localhost:3000');
|
|
cy.contains('MySql');
|
|
cy.contains('Postgres');
|
|
});
|
|
|
|
// it('import chinook DB', () => {
|
|
// cy.visit('http://localhost:3000');
|
|
// cy.get('[data-testid=ConnectionTab_buttonConnect]').click();
|
|
// });
|
|
});
|