mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
16 lines
353 B
JavaScript
16 lines
353 B
JavaScript
describe('Edit Group', () => {
|
|
beforeEach(() => {
|
|
cy.login();
|
|
cy.visit('/groups/1');
|
|
});
|
|
|
|
it('renders the page and takes a screenshot', () => {
|
|
cy.getByTestId('Group').within(() => {
|
|
cy.get('h3').should('contain', 'admin');
|
|
cy.get('td').should('contain', 'Example Admin');
|
|
});
|
|
|
|
cy.percySnapshot('Group');
|
|
});
|
|
});
|