mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
15 lines
291 B
JavaScript
15 lines
291 B
JavaScript
describe('User List', () => {
|
|
beforeEach(() => {
|
|
cy.login();
|
|
cy.visit('/users');
|
|
});
|
|
|
|
it('renders the page and takes a screenshot', () => {
|
|
cy.getByTestId('TimeAgo').then(($timeAgo) => {
|
|
$timeAgo.text('an hour ago');
|
|
});
|
|
|
|
cy.percySnapshot('Users');
|
|
});
|
|
});
|