mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 03:16:01 +00:00
12 lines
303 B
JavaScript
12 lines
303 B
JavaScript
describe('Data browser data', () => {
|
|
it('Load table data', () => {
|
|
cy.visit('http://localhost:3000');
|
|
|
|
cy.contains('MySql-connection').click();
|
|
cy.contains('Chinook').click();
|
|
cy.contains('Album').click();
|
|
cy.contains('Let There Be Rock');
|
|
cy.contains('Rows: 347');
|
|
});
|
|
});
|